* 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.
This commit is contained in:
parent
1d7dd82d69
commit
18d3a03bd4
|
@ -1,3 +1,10 @@
|
|||
2005-02-08 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* 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.
|
||||
|
||||
2005-02-07 Antony King <antony.king@st.com>
|
||||
|
||||
* libc/stdio/clearerr.c (clearerr): Ensure CHECK_INIT() is
|
||||
|
|
|
@ -50,8 +50,8 @@ extern "C" {
|
|||
struct passwd {
|
||||
char *pw_name; /* user name */
|
||||
char *pw_passwd; /* encrypted password */
|
||||
int pw_uid; /* user uid */
|
||||
int pw_gid; /* user gid */
|
||||
uid_t pw_uid; /* user uid */
|
||||
gid_t pw_gid; /* user gid */
|
||||
char *pw_comment; /* comment */
|
||||
char *pw_gecos; /* Honeywell login info */
|
||||
char *pw_dir; /* home directory */
|
||||
|
|
|
@ -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));
|
||||
|
|
Loading…
Reference in New Issue