2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-22 09:57:41 +00:00
sudo/emul/utime.h

12 lines
201 B
C
Raw Normal View History

1995-06-17 23:02:15 +00:00
#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 */