123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- #ifndef _UTIME_H
- #define _UTIME_H 1
- #include <features.h>
- __BEGIN_DECLS
- #include <bits/types.h>
- #if defined __USE_XOPEN || defined __USE_XOPEN2K
- # define __need_time_t
- # include <time.h>
- #endif
- struct utimbuf
- {
- __time_t actime;
- __time_t modtime;
- };
- extern int utime (const char *__file,
- const struct utimbuf *__file_times)
- __THROW __nonnull ((1));
- __END_DECLS
- #endif
|