File: unixio_gcc.h

package info (click to toggle)
unzip 6.0-16%2Bdeb8u3
  • links: PTS
  • area: main
  • in suites: jessie
  • size: 8,768 kB
  • ctags: 10,194
  • sloc: ansic: 55,133; cpp: 4,084; makefile: 2,517; asm: 1,789; cs: 1,012; sh: 119
file content (27 lines) | stat: -rw-r--r-- 464 bytes parent folder | download | duplicates (17)
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 */