source: rtems/c/src/exec/posix/include/sys/utime.h @ d1ee44e

4.104.114.84.95
Last change on this file since d1ee44e was d1ee44e, checked in by Joel Sherrill <joel.sherrill@…>, on 11/23/98 at 19:39:45

New files added as part of file system infrastructure effort.

  • Property mode set to 100644
File size: 357 bytes
Line 
1/*
2 *  $Id$
3 */
4
5#ifndef __UTIME_h__
6#define __UTIME_h__
7
8/*
9 *  POSIX 1003.1b 5.6.6 Set File Access and Modification Times
10 */
11
12struct utimbuf {
13  time_t  actime;   /* Access time */
14  time_t  modtime;  /* Modification time */
15};
16
17/* Functions */
18
19int utime(
20  const char           *path,
21  const struct utimbuf *times
22);
23
24#endif
25/* end of include file */
Note: See TracBrowser for help on using the repository browser.