10 lines
138 B
C
10 lines
138 B
C
|
|
#ifndef UNISTD_H_
|
||
|
|
#define UNISTD_H_
|
||
|
|
|
||
|
|
#include <stdint.h>
|
||
|
|
|
||
|
|
extern int open(const char *path, int flags);
|
||
|
|
extern int close(int fd);
|
||
|
|
|
||
|
|
#endif
|