1/* 2004-12-12 SMS.
2 *
3 * Emergency replacement UNIXIO.H for GNU C, for use as needed.
4 * Install as GNU_CC_INCLUDE:[000000]UNIXIO.H
5 */
6
7#ifndef __UNIXIO_LOADED
8#define __UNIXIO_LOADED 1
9
10#include <sys/types.h>
11
12#include <stdlib.h>
13
14#ifndef SEEK_SET
15# define SEEK_SET 0
16#endif /* ndef SEEK_SET */
17
18#ifndef SEEK_CUR
19# define SEEK_CUR 1
20#endif /* ndef SEEK_CUR */
21
22#ifndef SEEK_END
23# define SEEK_END 2
24#endif /* ndef SEEK_END */
25
26#endif  /* ndef __UNIXIO_LOADED */
27
28