liblinux/src/liblinux/syscall.h

9 lines
132 B
C
Raw Normal View History

2021-12-03 14:05:10 +00:00
#ifndef LIBLINUX_SYSCALL_H
#define LIBLINUX_SYSCALL_H
#include <linux/unistd.h> // FIXME
long syscall(long syscall, ...);
#endif