Subversion Repositories tendra.SVN

Rev

Rev 6 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
6 7u83 1
#ifndef __HACKED_UNISTD_INCLUDED
2
#define __HACKED_UNISTD_INCLUDED
3
 
4
#include_next <unistd.h>
5
 
6
#ifndef _POSIX_JOB_CONTROL
7
#define _POSIX_JOB_CONTROL	1
8
#endif
9
 
10
#ifndef _POSIX_SAVED_IDS
11
#define _POSIX_SAVED_IDS	1
12
#endif
13
 
14
#ifndef _SC_PASS_MAX
15
#define _SC_PASS_MAX		0
16
#endif
17
 
18
#ifndef _SC_STREAM_MAX
19
#define _SC_STREAM_MAX		0
20
#endif
21
 
22
#ifndef _SC_TZNAME_MAX
23
#define _SC_TZNAME_MAX		0
24
#endif
25
 
26
#ifndef _SC_XOPEN_VERSION
27
#define _SC_XOPEN_VERSION	0
28
#endif
29
 
30
#endif