Subversion Repositories Kolibri OS

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
6725 siemargl 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 
11
 
12
#include 
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