OpenCores
URL https://opencores.org/ocsvn/scarts/scarts/trunk

Subversion Repositories scarts

[/] [scarts/] [trunk/] [toolchain/] [scarts-newlib/] [newlib-1.17.0/] [newlib/] [libc/] [sys/] [rtems/] [sys/] [utime.h] - Blame information for rev 9

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 9 jlechner
/*
2
 *  $Id: utime.h,v 1.1 2002/11/07 19:27:36 jjohnstn Exp $
3
 */
4
 
5
#ifndef __UTIME_h__
6
#define __UTIME_h__
7
 
8
#ifdef __cplusplus
9
extern "C" {
10
#endif
11
 
12
/*
13
 *  POSIX 1003.1b 5.6.6 Set File Access and Modification Times
14
 */
15
 
16
struct utimbuf {
17
  time_t  actime;   /* Access time */
18
  time_t  modtime;  /* Modification time */
19
};
20
 
21
/* Functions */
22
 
23
int utime(
24
  const char           *path,
25
  const struct utimbuf *times
26
);
27
 
28
#ifdef __cplusplus
29
};
30
#endif
31
 
32
#endif /* _SYS_UTIME_H */

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.