mirror of
https://github.com/sudo-project/sudo.git
synced 2025-08-22 09:57:41 +00:00
12 lines
201 B
C
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 */
|