Files
sudo/emul/utime.h
Todd C. Miller 9df83c3d6c Initial revision
1995-06-17 23:02:15 +00:00

12 lines
201 B
C

#ifndef _UTIME_H
#define _UTIME_H
struct utimbuf {
time_t actime; /* access time */
time_t modtime; /* mod time */
};
int utime __P((const char *, const struct utimbuf *));
#endif /* _UTIME_H */