2018-05-02 06:20:06 +03:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <syscall.h>
|
2018-12-10 04:09:27 +03:00
|
|
|
#include <syscall_nums.h>
|
2018-05-02 06:20:06 +03:00
|
|
|
|
2018-12-10 04:09:27 +03:00
|
|
|
DEFN_SYSCALL1(close, SYS_CLOSE, int);
|
2018-05-02 06:20:06 +03:00
|
|
|
|
|
|
|
int close(int file) {
|
|
|
|
return syscall_close(file);
|
|
|
|
}
|