blob: 00018e3175154753215c49ecb13080a1b1a58db2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
/* $Id$
* ============================================================================
*
* = LIBRARY
* pace
*
* = FILENAME
* pace/posix/utime.h
*
* = AUTHOR
* Luther Baker
*
* ============================================================================ */
#ifndef PACE_UTIME_H_POSIX
#define PACE_UTIME_H_POSIX
#include "pace/sys/types.h"
#include <utime.h>
#if defined (PACE_HAS_CPLUSPLUS)
extern "C" {
#endif /* PACE_HAS_CPLUSPLUS */
#ifndef PACE_UTIMBUF
#define PACE_UTIMBUF
typedef struct utimbuf pace_utimbuf;
#endif /* PACE_UTIMBUF */
#if defined (PACE_HAS_CPLUSPLUS)
}
#endif /* PACE_HAS_CPLUSPLUS */
#endif /* PACE_UTIME_H_POSIX */
|