Displaying 1 result from an estimated 1 matches for "posix_utim".
Did you mean:
posix_utime
2000 Sep 28
1
[PATCH] Next cleanup part 4 or 5 by now.=)
...s)
{
- #undef wait /* Use NeXT's wait() function */
union wait statusp;
pid_t wait_pid;
+ #undef wait /* Use NeXT's wait() function */
wait_pid = wait(&statusp);
status = (int *) statusp.w_status;
return wait_pid;
}
-
-int
-posix_utime(char *filename,struct utimbuf *buf)
-{
- time_t timep[2];
-
- timep[0] = buf->actime;
- timep[1] = buf->modtime;
-
- #undef uti...