OpenCores
URL https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [newlib-1.17.0/] [newlib/] [libc/] [include/] [sys/] [unistd.h] - Blame information for rev 310

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 148 jeremybenn
#ifndef _SYS_UNISTD_H
2
#define _SYS_UNISTD_H
3
 
4
#ifdef __cplusplus
5
extern "C" {
6
#endif
7
 
8
#include <_ansi.h>
9
#include <sys/types.h>
10
#include <sys/_types.h>
11
#define __need_size_t
12
#define __need_ptrdiff_t
13
#include <stddef.h>
14
 
15
extern char **environ;
16
 
17
void    _EXFUN(_exit, (int __status ) _ATTRIBUTE ((noreturn)));
18
 
19
int     _EXFUN(access,(const char *__path, int __amode ));
20
unsigned  _EXFUN(alarm, (unsigned __secs ));
21
int     _EXFUN(chdir, (const char *__path ));
22
int     _EXFUN(chmod, (const char *__path, mode_t __mode ));
23
#if !defined(__INSIDE_CYGWIN__)
24
int     _EXFUN(chown, (const char *__path, uid_t __owner, gid_t __group ));
25
#endif
26
#if defined(__CYGWIN__) || defined(__rtems__)
27
int     _EXFUN(chroot, (const char *__path ));
28
#endif
29
int     _EXFUN(close, (int __fildes ));
30
#if defined(__CYGWIN__)
31
size_t  _EXFUN(confstr, (int __name, char *__buf, size_t __len));
32
#endif
33
char    _EXFUN(*ctermid, (char *__s ));
34
char    _EXFUN(*cuserid, (char *__s ));
35
#if defined(__CYGWIN__)
36
int     _EXFUN(daemon, (int nochdir, int noclose));
37
#endif
38
int     _EXFUN(dup, (int __fildes ));
39
int     _EXFUN(dup2, (int __fildes, int __fildes2 ));
40
#if defined(__CYGWIN__)
41
void    _EXFUN(endusershell, (void));
42
#endif
43
int     _EXFUN(execl, (const char *__path, const char *, ... ));
44
int     _EXFUN(execle, (const char *__path, const char *, ... ));
45
int     _EXFUN(execlp, (const char *__file, const char *, ... ));
46
int     _EXFUN(execv, (const char *__path, char * const __argv[] ));
47
int     _EXFUN(execve, (const char *__path, char * const __argv[], char * const __envp[] ));
48
int     _EXFUN(execvp, (const char *__file, char * const __argv[] ));
49
#if defined(__CYGWIN__)
50
int     _EXFUN(faccessat, (int __dirfd, const char *__path, int __mode, int __flags));
51
#endif
52
#if defined(__CYGWIN__) || defined(__rtems__) || defined(__SPU__)
53
int     _EXFUN(fchdir, (int __fildes));
54
#endif
55
int     _EXFUN(fchmod, (int __fildes, mode_t __mode ));
56
#if !defined(__INSIDE_CYGWIN__)
57
int     _EXFUN(fchown, (int __fildes, uid_t __owner, gid_t __group ));
58
#endif
59
#if defined(__CYGWIN__)
60
int     _EXFUN(fchownat, (int __dirfd, const char *__path, uid_t __owner, gid_t __group, int __flags));
61
#endif
62
pid_t   _EXFUN(fork, (void ));
63
long    _EXFUN(fpathconf, (int __fd, int __name ));
64
int     _EXFUN(fsync, (int __fd));
65
int     _EXFUN(fdatasync, (int __fd));
66
char    _EXFUN(*getcwd, (char *__buf, size_t __size ));
67
#if defined(__CYGWIN__)
68
int     _EXFUN(getdomainname ,(char *__name, size_t __len));
69
#endif
70
#if !defined(__INSIDE_CYGWIN__)
71
gid_t   _EXFUN(getegid, (void ));
72
uid_t   _EXFUN(geteuid, (void ));
73
gid_t   _EXFUN(getgid, (void ));
74
#endif
75
int     _EXFUN(getgroups, (int __gidsetsize, gid_t __grouplist[] ));
76
#if defined(__CYGWIN__)
77
long    _EXFUN(gethostid, (void));
78
#endif
79
char    _EXFUN(*getlogin, (void ));
80
#if defined(_POSIX_THREAD_SAFE_FUNCTIONS)
81
int _EXFUN(getlogin_r, (char *name, size_t namesize) );
82
#endif
83
char    _EXFUN(*getpass, (const char *__prompt));
84
size_t  _EXFUN(getpagesize, (void));
85
#if defined(__CYGWIN__)
86
int    _EXFUN(getpeereid, (int, uid_t *, gid_t *));
87
#endif
88
pid_t   _EXFUN(getpgid, (pid_t));
89
pid_t   _EXFUN(getpgrp, (void ));
90
pid_t   _EXFUN(getpid, (void ));
91
pid_t   _EXFUN(getppid, (void ));
92
#ifdef __CYGWIN__
93
pid_t   _EXFUN(getsid, (pid_t));
94
#endif
95
#if !defined(__INSIDE_CYGWIN__)
96
uid_t   _EXFUN(getuid, (void ));
97
#endif
98
#ifdef __CYGWIN__
99
char *  _EXFUN(getusershell, (void));
100
char    _EXFUN(*getwd, (char *__buf ));
101
int     _EXFUN(iruserok, (unsigned long raddr, int superuser, const char *ruser, const char *luser));
102
#endif
103
int     _EXFUN(isatty, (int __fildes ));
104
#if !defined(__INSIDE_CYGWIN__)
105
int     _EXFUN(lchown, (const char *__path, uid_t __owner, gid_t __group ));
106
#endif
107
int     _EXFUN(link, (const char *__path1, const char *__path2 ));
108
#if defined(__CYGWIN__)
109
int     _EXFUN(linkat, (int __dirfd1, const char *__path1, int __dirfd2, const char *__path2, int __flags ));
110
#endif
111
int     _EXFUN(nice, (int __nice_value ));
112
#if !defined(__INSIDE_CYGWIN__)
113
off_t   _EXFUN(lseek, (int __fildes, off_t __offset, int __whence ));
114
#endif
115
#if defined(__SPU__) || defined(__CYGWIN__)
116
#define F_ULOCK 0
117
#define F_LOCK  1
118
#define F_TLOCK 2
119
#define F_TEST  3
120
int     _EXFUN(lockf, (int __fd, int __cmd, off_t __len));
121
#endif
122
long    _EXFUN(pathconf, (const char *__path, int __name ));
123
int     _EXFUN(pause, (void ));
124
#ifdef __CYGWIN__
125
int     _EXFUN(pthread_atfork, (void (*)(void), void (*)(void), void (*)(void)));
126
#endif
127
int     _EXFUN(pipe, (int __fildes[2] ));
128
ssize_t _EXFUN(pread, (int __fd, void *__buf, size_t __nbytes, off_t __offset));
129
ssize_t _EXFUN(pwrite, (int __fd, const void *__buf, size_t __nbytes, off_t __offset));
130
_READ_WRITE_RETURN_TYPE _EXFUN(read, (int __fd, void *__buf, size_t __nbyte ));
131
#if defined(__CYGWIN__)
132
int     _EXFUN(rresvport, (int *__alport));
133
int     _EXFUN(revoke, (char *__path));
134
#endif
135
int     _EXFUN(rmdir, (const char *__path ));
136
#if defined(__CYGWIN__)
137
int     _EXFUN(ruserok, (const char *rhost, int superuser, const char *ruser, const char *luser));
138
#endif
139
void *  _EXFUN(sbrk,  (ptrdiff_t __incr));
140
#if !defined(__INSIDE_CYGWIN__)
141
#if defined(__CYGWIN__)
142
int     _EXFUN(setegid, (gid_t __gid ));
143
int     _EXFUN(seteuid, (uid_t __uid ));
144
#endif
145
int     _EXFUN(setgid, (gid_t __gid ));
146
#endif
147
#if defined(__CYGWIN__)
148
int     _EXFUN(setgroups, (int ngroups, const gid_t *grouplist ));
149
#endif
150
int     _EXFUN(setpgid, (pid_t __pid, pid_t __pgid ));
151
int     _EXFUN(setpgrp, (void ));
152
#if defined(__CYGWIN__) && !defined(__INSIDE_CYGWIN__)
153
int     _EXFUN(setregid, (gid_t __rgid, gid_t __egid));
154
int     _EXFUN(setreuid, (uid_t __ruid, uid_t __euid));
155
#endif
156
pid_t   _EXFUN(setsid, (void ));
157
#if !defined(__INSIDE_CYGWIN__)
158
int     _EXFUN(setuid, (uid_t __uid ));
159
#endif
160
#if defined(__CYGWIN__)
161
void    _EXFUN(setusershell, (void));
162
#endif
163
unsigned _EXFUN(sleep, (unsigned int __seconds ));
164
void    _EXFUN(swab, (const void *, void *, ssize_t));
165
long    _EXFUN(sysconf, (int __name ));
166
pid_t   _EXFUN(tcgetpgrp, (int __fildes ));
167
int     _EXFUN(tcsetpgrp, (int __fildes, pid_t __pgrp_id ));
168
char    _EXFUN(*ttyname, (int __fildes ));
169
#if defined(__CYGWIN__) || defined(__rtems__)
170
int     _EXFUN(ttyname_r, (int, char *, size_t));
171
#endif
172
int     _EXFUN(unlink, (const char *__path ));
173
int     _EXFUN(usleep, (useconds_t __useconds));
174
int     _EXFUN(vhangup, (void ));
175
_READ_WRITE_RETURN_TYPE _EXFUN(write, (int __fd, const void *__buf, size_t __nbyte ));
176
 
177
#ifdef __CYGWIN__
178
# define __UNISTD_GETOPT__
179
# include <getopt.h>
180
# undef __UNISTD_GETOPT__
181
#else
182
extern char *optarg;                    /* getopt(3) external variables */
183
extern int optind, opterr, optopt;
184
int      getopt(int, char * const [], const char *);
185
extern int optreset;                    /* getopt(3) external variable */
186
#endif
187
 
188
#ifndef        _POSIX_SOURCE
189
pid_t   _EXFUN(vfork, (void ));
190
 
191
extern char *suboptarg;                 /* getsubopt(3) external variable */
192
int      getsubopt(char **, char * const *, char **);
193
#endif /* _POSIX_SOURCE */
194
 
195
#ifdef _COMPILING_NEWLIB
196
/* Provide prototypes for most of the _<systemcall> names that are
197
   provided in newlib for some compilers.  */
198
int     _EXFUN(_close, (int __fildes ));
199
pid_t   _EXFUN(_fork, (void ));
200
pid_t   _EXFUN(_getpid, (void ));
201
int     _EXFUN(_isatty, (int __fildes ));
202
int     _EXFUN(_link, (const char *__path1, const char *__path2 ));
203
_off_t   _EXFUN(_lseek, (int __fildes, _off_t __offset, int __whence ));
204
#ifdef __LARGE64_FILES
205
_off64_t _EXFUN(_lseek64, (int __filedes, _off64_t __offset, int __whence ));
206
#endif
207
_READ_WRITE_RETURN_TYPE _EXFUN(_read, (int __fd, void *__buf, size_t __nbyte ));
208
void *  _EXFUN(_sbrk,  (ptrdiff_t __incr));
209
int     _EXFUN(_unlink, (const char *__path ));
210
_READ_WRITE_RETURN_TYPE _EXFUN(_write, (int __fd, const void *__buf, size_t __nbyte ));
211
int     _EXFUN(_execve, (const char *__path, char * const __argv[], char * const __envp[] ));
212
#endif
213
 
214
#if defined(__CYGWIN__) || defined(__rtems__) || defined(__sh__) || defined(__SPU__)
215
#if !defined(__INSIDE_CYGWIN__)
216
int     _EXFUN(ftruncate, (int __fd, off_t __length));
217
int     _EXFUN(truncate, (const char *, off_t __length));
218
#endif
219
#endif
220
 
221
#if defined(__CYGWIN__) || defined(__rtems__)
222
int     _EXFUN(getdtablesize, (void));
223
int     _EXFUN(setdtablesize, (int));
224
useconds_t _EXFUN(ualarm, (useconds_t __useconds, useconds_t __interval));
225
#if !(defined  (_WINSOCK_H) || defined (__USE_W32_SOCKETS))
226
/* winsock[2].h defines as __stdcall, and with int as 2nd arg */
227
 int    _EXFUN(gethostname, (char *__name, size_t __len));
228
#endif
229
char *  _EXFUN(mktemp, (char *));
230
#endif
231
 
232
#if defined(__CYGWIN__) || defined(__SPU__) || defined(__rtems__)
233
void    _EXFUN(sync, (void));
234
#endif
235
 
236
ssize_t _EXFUN(readlink, (const char *__path, char *__buf, size_t __buflen));
237
#if defined(__CYGWIN__)
238
ssize_t _EXFUN(readlinkat, (int __dirfd1, const char *__path, char *__buf, size_t __buflen));
239
#endif
240
int     _EXFUN(symlink, (const char *__name1, const char *__name2));
241
 
242
#define F_OK    0
243
#define R_OK    4
244
#define W_OK    2
245
#define X_OK    1
246
 
247
# define        SEEK_SET        0
248
# define        SEEK_CUR        1
249
# define        SEEK_END        2
250
 
251
#include <sys/features.h>
252
 
253
#define STDIN_FILENO    0       /* standard input file descriptor */
254
#define STDOUT_FILENO   1       /* standard output file descriptor */
255
#define STDERR_FILENO   2       /* standard error file descriptor */
256
 
257
/*
258
 *  sysconf values per IEEE Std 1003.1, 2004 Edition
259
 */
260
 
261
#define _SC_ARG_MAX                       0
262
#define _SC_CHILD_MAX                     1
263
#define _SC_CLK_TCK                       2
264
#define _SC_NGROUPS_MAX                   3
265
#define _SC_OPEN_MAX                      4
266
#define _SC_JOB_CONTROL                   5
267
#define _SC_SAVED_IDS                     6
268
#define _SC_VERSION                       7
269
#define _SC_PAGESIZE                      8
270
#define _SC_PAGE_SIZE                     _SC_PAGESIZE
271
/* These are non-POSIX values we accidentally introduced in 2000 without
272
   guarding them.  Keeping them unguarded for backward compatibility. */
273
#define _SC_NPROCESSORS_CONF              9
274
#define _SC_NPROCESSORS_ONLN             10
275
#define _SC_PHYS_PAGES                   11
276
#define _SC_AVPHYS_PAGES                 12
277
/* End of non-POSIX values. */
278
#define _SC_MQ_OPEN_MAX                  13
279
#define _SC_MQ_PRIO_MAX                  14
280
#define _SC_RTSIG_MAX                    15
281
#define _SC_SEM_NSEMS_MAX                16
282
#define _SC_SEM_VALUE_MAX                17
283
#define _SC_SIGQUEUE_MAX                 18
284
#define _SC_TIMER_MAX                    19
285
#define _SC_TZNAME_MAX                   20
286
#define _SC_ASYNCHRONOUS_IO              21
287
#define _SC_FSYNC                        22
288
#define _SC_MAPPED_FILES                 23
289
#define _SC_MEMLOCK                      24
290
#define _SC_MEMLOCK_RANGE                25
291
#define _SC_MEMORY_PROTECTION            26
292
#define _SC_MESSAGE_PASSING              27
293
#define _SC_PRIORITIZED_IO               28
294
#define _SC_REALTIME_SIGNALS             29
295
#define _SC_SEMAPHORES                   30
296
#define _SC_SHARED_MEMORY_OBJECTS        31
297
#define _SC_SYNCHRONIZED_IO              32
298
#define _SC_TIMERS                       33
299
#define _SC_AIO_LISTIO_MAX               34
300
#define _SC_AIO_MAX                      35
301
#define _SC_AIO_PRIO_DELTA_MAX           36
302
#define _SC_DELAYTIMER_MAX               37
303
#define _SC_THREAD_KEYS_MAX              38
304
#define _SC_THREAD_STACK_MIN             39
305
#define _SC_THREAD_THREADS_MAX           40
306
#define _SC_TTY_NAME_MAX                 41
307
#define _SC_THREADS                      42
308
#define _SC_THREAD_ATTR_STACKADDR        43
309
#define _SC_THREAD_ATTR_STACKSIZE        44
310
#define _SC_THREAD_PRIORITY_SCHEDULING   45
311
#define _SC_THREAD_PRIO_INHERIT          46
312
/* _SC_THREAD_PRIO_PROTECT was _SC_THREAD_PRIO_CEILING in early drafts */
313
#define _SC_THREAD_PRIO_PROTECT          47
314
#define _SC_THREAD_PRIO_CEILING          _SC_THREAD_PRIO_PROTECT
315
#define _SC_THREAD_PROCESS_SHARED        48
316
#define _SC_THREAD_SAFE_FUNCTIONS        49
317
#define _SC_GETGR_R_SIZE_MAX             50
318
#define _SC_GETPW_R_SIZE_MAX             51
319
#define _SC_LOGIN_NAME_MAX               52
320
#define _SC_THREAD_DESTRUCTOR_ITERATIONS 53
321
#define _SC_ADVISORY_INFO                54
322
#define _SC_ATEXIT_MAX                   55
323
#define _SC_BARRIERS                     56
324
#define _SC_BC_BASE_MAX                  57
325
#define _SC_BC_DIM_MAX                   58
326
#define _SC_BC_SCALE_MAX                 59
327
#define _SC_BC_STRING_MAX                60
328
#define _SC_CLOCK_SELECTION              61
329
#define _SC_COLL_WEIGHTS_MAX             62
330
#define _SC_CPUTIME                      63
331
#define _SC_EXPR_NEST_MAX                64
332
#define _SC_HOST_NAME_MAX                65
333
#define _SC_IOV_MAX                      66
334
#define _SC_IPV6                         67
335
#define _SC_LINE_MAX                     68
336
#define _SC_MONOTONIC_CLOCK              69
337
#define _SC_RAW_SOCKETS                  70
338
#define _SC_READER_WRITER_LOCKS          71
339
#define _SC_REGEXP                       72
340
#define _SC_RE_DUP_MAX                   73
341
#define _SC_SHELL                        74
342
#define _SC_SPAWN                        75
343
#define _SC_SPIN_LOCKS                   76
344
#define _SC_SPORADIC_SERVER              77
345
#define _SC_SS_REPL_MAX                  78
346
#define _SC_SYMLOOP_MAX                  79
347
#define _SC_THREAD_CPUTIME               80
348
#define _SC_THREAD_SPORADIC_SERVER       81
349
#define _SC_TIMEOUTS                     82
350
#define _SC_TRACE                        83
351
#define _SC_TRACE_EVENT_FILTER           84
352
#define _SC_TRACE_EVENT_NAME_MAX         85
353
#define _SC_TRACE_INHERIT                86
354
#define _SC_TRACE_LOG                    87
355
#define _SC_TRACE_NAME_MAX               88
356
#define _SC_TRACE_SYS_MAX                89
357
#define _SC_TRACE_USER_EVENT_MAX         90
358
#define _SC_TYPED_MEMORY_OBJECTS         91
359
#define _SC_V6_ILP32_OFF32               92
360
#define _SC_XBS5_ILP32_OFF32             _SC_V6_ILP32_OFF32
361
#define _SC_V6_ILP32_OFFBIG              93
362
#define _SC_XBS5_ILP32_OFFBIG            _SC_V6_ILP32_OFFBIG
363
#define _SC_V6_LP64_OFF64                94
364
#define _SC_XBS5_LP64_OFF64              _SC_V6_LP64_OFF64
365
#define _SC_V6_LPBIG_OFFBIG              95
366
#define _SC_XBS5_LPBIG_OFFBIG            _SC_V6_LPBIG_OFFBIG
367
#define _SC_XOPEN_CRYPT                  96
368
#define _SC_XOPEN_ENH_I18N               97
369
#define _SC_XOPEN_LEGACY                 98
370
#define _SC_XOPEN_REALTIME               99
371
#define _SC_STREAM_MAX                  100
372
#define _SC_PRIORITY_SCHEDULING         101
373
#define _SC_XOPEN_REALTIME_THREADS      102
374
#define _SC_XOPEN_SHM                   103
375
#define _SC_XOPEN_STREAMS               104
376
#define _SC_XOPEN_UNIX                  105
377
#define _SC_XOPEN_VERSION               106
378
#define _SC_2_CHAR_TERM                 107
379
#define _SC_2_C_BIND                    108
380
#define _SC_2_C_DEV                     109
381
#define _SC_2_FORT_DEV                  110
382
#define _SC_2_FORT_RUN                  111
383
#define _SC_2_LOCALEDEF                 112
384
#define _SC_2_PBS                       113
385
#define _SC_2_PBS_ACCOUNTING            114
386
#define _SC_2_PBS_CHECKPOINT            115
387
#define _SC_2_PBS_LOCATE                116
388
#define _SC_2_PBS_MESSAGE               117
389
#define _SC_2_PBS_TRACK                 118
390
#define _SC_2_SW_DEV                    119
391
#define _SC_2_UPE                       120
392
#define _SC_2_VERSION                   121
393
 
394
/*
395
 *  pathconf values per IEEE Std 1003.1, 2004 Edition
396
 */
397
 
398
#define _PC_LINK_MAX                      0
399
#define _PC_MAX_CANON                     1
400
#define _PC_MAX_INPUT                     2
401
#define _PC_NAME_MAX                      3
402
#define _PC_PATH_MAX                      4
403
#define _PC_PIPE_BUF                      5
404
#define _PC_CHOWN_RESTRICTED              6
405
#define _PC_NO_TRUNC                      7
406
#define _PC_VDISABLE                      8
407
#define _PC_ASYNC_IO                      9
408
#define _PC_PRIO_IO                      10
409
#define _PC_SYNC_IO                      11
410
#define _PC_FILESIZEBITS                 12
411
#define _PC_2_SYMLINKS                   13
412
#define _PC_SYMLINK_MAX                  14
413
#ifdef __CYGWIN__
414
/* Ask for POSIX permission bits support. */
415
#define _PC_POSIX_PERMISSIONS            90
416
/* Ask for full POSIX permission support including uid/gid settings. */
417
#define _PC_POSIX_SECURITY               91
418
#endif
419
 
420
/*
421
 *  confstr values per IEEE Std 1003.1, 2004 Edition
422
 */
423
 
424
#ifdef __CYGWIN__       /* Only defined on Cygwin for now. */
425
#define _CS_PATH                               0
426
#define _CS_POSIX_V6_ILP32_OFF32_CFLAGS        1
427
#define _CS_XBS5_ILP32_OFF32_CFLAGS           _CS_POSIX_V6_ILP32_OFF32_CFLAGS
428
#define _CS_POSIX_V6_ILP32_OFF32_LDFLAGS       2
429
#define _CS_XBS5_ILP32_OFF32_LDFLAGS          _CS_POSIX_V6_ILP32_OFF32_LDFLAGS
430
#define _CS_POSIX_V6_ILP32_OFF32_LIBS          3
431
#define _CS_XBS5_ILP32_OFF32_LIBS             _CS_POSIX_V6_ILP32_OFF32_LIBS
432
#define _CS_XBS5_ILP32_OFF32_LINTFLAGS         4
433
#define _CS_POSIX_V6_ILP32_OFFBIG_CFLAGS       5
434
#define _CS_XBS5_ILP32_OFFBIG_CFLAGS          _CS_POSIX_V6_ILP32_OFFBIG_CFLAGS
435
#define _CS_POSIX_V6_ILP32_OFFBIG_LDFLAGS      6
436
#define _CS_XBS5_ILP32_OFFBIG_LDFLAGS         _CS_POSIX_V6_ILP32_OFFBIG_LDFLAGS
437
#define _CS_POSIX_V6_ILP32_OFFBIG_LIBS         7
438
#define _CS_XBS5_ILP32_OFFBIG_LIBS            _CS_POSIX_V6_ILP32_OFFBIG_LIBS
439
#define _CS_XBS5_ILP32_OFFBIG_LINTFLAGS        8
440
#define _CS_POSIX_V6_LP64_OFF64_CFLAGS         9
441
#define _CS_XBS5_LP64_OFF64_CFLAGS            _CS_POSIX_V6_LP64_OFF64_CFLAGS
442
#define _CS_POSIX_V6_LP64_OFF64_LDFLAGS       10
443
#define _CS_XBS5_LP64_OFF64_LDFLAGS           _CS_POSIX_V6_LP64_OFF64_LDFLAGS
444
#define _CS_POSIX_V6_LP64_OFF64_LIBS          11
445
#define _CS_XBS5_LP64_OFF64_LIBS              _CS_POSIX_V6_LP64_OFF64_LIBS
446
#define _CS_XBS5_LP64_OFF64_LINTFLAGS         12
447
#define _CS_POSIX_V6_LPBIG_OFFBIG_CFLAGS      13
448
#define _CS_XBS5_LPBIG_OFFBIG_CFLAGS          _CS_POSIX_V6_LPBIG_OFFBIG_CFLAGS
449
#define _CS_POSIX_V6_LPBIG_OFFBIG_LDFLAGS     14
450
#define _CS_XBS5_LPBIG_OFFBIG_LDFLAGS         _CS_POSIX_V6_LPBIG_OFFBIG_LDFLAGS
451
#define _CS_POSIX_V6_LPBIG_OFFBIG_LIBS        15
452
#define _CS_XBS5_LPBIG_OFFBIG_LIBS            _CS_POSIX_V6_LPBIG_OFFBIG_LIBS
453
#define _CS_XBS5_LPBIG_OFFBIG_LINTFLAGS       16
454
#define _CS_POSIX_V6_WIDTH_RESTRICTED_ENVS    17
455
#endif
456
 
457
#ifndef __CYGWIN__
458
# define        MAXPATHLEN      1024
459
#endif
460
 
461
#ifdef __cplusplus
462
}
463
#endif
464
#endif /* _SYS_UNISTD_H */

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.