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

utime.h « mpw « include - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e8bf66f2ba5c9cbff010ad6ce6fc1f5defebdcc7 (plain)
1
2
3
4
5
6
7

struct utimbuf {
  time_t actime;
  time_t modtime;
};

int utime (char *, struct utimbuf *);