summaryrefslogtreecommitdiff
path: root/vms/unixio_gcc.h
blob: 05bc421f1781a8c30560cdb24aff0fdf8f8eaaa3 (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
/* 2004-12-12 SMS.
 *
 * Emergency replacement UNIXIO.H for GNU C, for use as needed.
 * Install as GNU_CC_INCLUDE:[000000]UNIXIO.H
 */

#ifndef __UNIXIO_LOADED
#define __UNIXIO_LOADED 1

#include <sys/types.h>

#include <stdlib.h>

#ifndef SEEK_SET
# define SEEK_SET 0
#endif /* ndef SEEK_SET */

#ifndef SEEK_CUR
# define SEEK_CUR 1
#endif /* ndef SEEK_CUR */

#ifndef SEEK_END
# define SEEK_END 2
#endif /* ndef SEEK_END */

#endif  /* ndef __UNIXIO_LOADED */