File: linux.h

package info (click to toggle)
libc-sparc 5.3.12-2
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 18,664 kB
  • ctags: 53,237
  • sloc: ansic: 181,379; asm: 5,080; makefile: 3,340; lex: 521; sh: 439; yacc: 401; awk: 28
file content (32 lines) | stat: -rw-r--r-- 737 bytes parent folder | download | duplicates (7)
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
28
29
30
31
32
#ifndef _CONFIG_LINUX_H
#define  _CONFIG_LINUX_H

#undef _STDIO_USES_IOSTREAM
#define _STDIO_USES_IOSTREAM 	1

#undef _IO_HAVE_ST_BLKSIZE
#define _IO_HAVE_ST_BLKSIZE	1

#undef _IO_DEBUG
#define _IO_DEBUG

#define _IO_open	__open
#define _IO_close	__close
#define	_IO_fork	__fork
#define	_IO_fcntl	__fcntl
#define _IO__exit	_exit
#define _IO_read	__read
#define _IO_write	__write
#define _IO_lseek	__lseek
#define	_IO_getdtablesize	__getdtablesize
#define _IO_pipe	__pipe
#define _IO_dup2	__dup2
#define _IO_execl	execl
#define _IO_waitpid	__waitpid
#define _IO_stat        __stat
#define _IO_getpid      __getpid
#define _IO_geteuid     __geteuid
#define _IO_getegid     __getegid
#define _IO_fstat	__fstat

#endif /* _CONFIG_LINUX_H */