From 9cd69d84efeb1fbbc59b468760be13430b585964 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Sat, 23 Nov 2013 01:25:47 +0000 Subject: 2013-11-22 Bryan Dunsmore * libc/include/sys/time.h (gettimeofday): Add restrict keyword. (setitimer): Likewise. * libc/sys/rdos/gettod.c (gettimeofday): Likewise. * libc/sys/rtems/crt0.c (gettimeofday): Likewise. --- newlib/libc/sys/rtems/crt0.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'newlib/libc/sys/rtems') diff --git a/newlib/libc/sys/rtems/crt0.c b/newlib/libc/sys/rtems/crt0.c index e47d933f6..a6f48f295 100644 --- a/newlib/libc/sys/rtems/crt0.c +++ b/newlib/libc/sys/rtems/crt0.c @@ -59,7 +59,7 @@ RTEMS_STUB(pid_t, fork(void), { return -1; }) RTEMS_STUB(int, fstat(int fd, struct stat *buf), { return -1; }) RTEMS_STUB(int, getdents(int fd, void *dp, int count), { return -1; }) RTEMS_STUB(char *, getlogin(void), { return 0; }) -RTEMS_STUB(int, gettimeofday(struct timeval *tv, struct timezone *tz), { return -1; }) +RTEMS_STUB(int, gettimeofday(struct timeval *__restrict tv, struct timezone *__restrict tz), { return -1; }) RTEMS_STUB(struct passwd *, getpwnam(const char *name), { return 0; }) RTEMS_STUB(struct passwd *, getpwuid(uid_t uid), { return 0; }) RTEMS_STUB(uid_t, getuid(void), { return 0; }) -- cgit v1.2.3