Welcome to mirror list, hosted at ThFree Co, Russian Federation.

utime.h « sys « linux « sys « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7499cfe7ea98a00d78a0cbfa28219299df813815 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef	_SYS_UTIME_H
#define	_SYS_UTIME_H	1

#include <sys/types.h>

struct utimbuf
  {
    time_t actime;		/* Access time.  */
    time_t modtime;		/* Modification time.  */
  };

int _EXFUN(utime, (const char *__file, const struct utimbuf *__times));

#endif /* _SYS_UTIME_H */