aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/include/sys/time.h
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2005-02-08 20:55:18 +0000
committerCorinna Vinschen <corinna@vinschen.de>2005-02-08 20:55:18 +0000
commit18d3a03bd4e998a54ad07b06d9b9f36de2c11315 (patch)
tree3aa1a3a1b56da97dfc5fc0681d648da0e13a5121 /newlib/libc/include/sys/time.h
parent1d7dd82d694755b854c500b1563287390149afc7 (diff)
downloadnewlib-18d3a03bd4e998a54ad07b06d9b9f36de2c11315.zip
newlib-18d3a03bd4e998a54ad07b06d9b9f36de2c11315.tar.gz
newlib-18d3a03bd4e998a54ad07b06d9b9f36de2c11315.tar.bz2
* libc/include/pwd.h (struct passwd): Change pw_uid and pw_gid
members to uid_t and gid_t according to SUSv3. * libc/include/sys/time.h (utimes): Change second parameter to const according to SUSv3.
Diffstat (limited to 'newlib/libc/include/sys/time.h')
-rw-r--r--newlib/libc/include/sys/time.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/include/sys/time.h b/newlib/libc/include/sys/time.h
index 20f2903..4771f57 100644
--- a/newlib/libc/include/sys/time.h
+++ b/newlib/libc/include/sys/time.h
@@ -72,7 +72,7 @@ struct itimerval {
int _EXFUN(gettimeofday, (struct timeval *__p, struct timezone *__z));
int _EXFUN(settimeofday, (const struct timeval *, const struct timezone *));
-int _EXFUN(utimes, (const char *__path, struct timeval *__tvp));
+int _EXFUN(utimes, (const char *__path, const struct timeval *__tvp));
int _EXFUN(getitimer, (int __which, struct itimerval *__value));
int _EXFUN(setitimer, (int __which, const struct itimerval *__value,
struct itimerval *__ovalue));