mirror of https://github.com/F-Stack/f-stack.git
9 lines
187 B
C
9 lines
187 B
C
|
#ifndef _FF_HOOK_SYSCALL_H
|
||
|
#define _FF_HOOK_SYSCALL_H
|
||
|
|
||
|
#undef FF_SYSCALL_DECL
|
||
|
#define FF_SYSCALL_DECL(ret, fn, args) extern ret ff_hook_##fn args
|
||
|
#include <ff_declare_syscalls.h>
|
||
|
|
||
|
#endif
|