* times.cc (timeval_to_filetime): Define first parameter const.

(utimes): Define second parameter to const according to SUSv3.
	(utime): Ditto.
	* include/sys/utime.h (utime) : Change declaration accordingly.
This commit is contained in:
Corinna Vinschen
2005-02-08 20:59:41 +00:00
parent 18d3a03bd4
commit b6bddccad6
3 changed files with 12 additions and 5 deletions

View File

@ -21,7 +21,7 @@ struct utimbuf
time_t modtime;
};
int _EXFUN(utime, (const char *__path, struct utimbuf *__buf));
int _EXFUN(utime, (const char *__path, const struct utimbuf *__buf));
#ifdef __cplusplus
};