summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/include/utime.h
blob: 41674f3794d2d7deeb0d3f0f24501c74bb74df3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef _UTIME_H
#define _UTIME_H

#include <sys/cdefs.h>
#include <sys/types.h>
#include <time.h>

struct utimbuf {
  time_t actime;  /* access time */
  time_t modtime; /* modification time */
};

int utime(const char *filename, struct utimbuf *buf) __THROW;


#endif