16 lines
143 B
C
16 lines
143 B
C
|
#ifndef _UNISTD_H
|
||
|
#define _UNISTD_H
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C"
|
||
|
{
|
||
|
#endif
|
||
|
|
||
|
long syscall(long, ...);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|