gen_syscall_header.py: fix include issue
This header uses definitions in include/syscall.h but wasn't explicitly including it. Signed-off-by: Andrew Boie <andrew.p.boie@intel.com>
This commit is contained in:
parent
c67eb56355
commit
d5a2400b9f
|
@ -149,6 +149,7 @@ def gen_defines(argc, kernel_only=False, user_only=False):
|
|||
sys.stdout.write(
|
||||
"/* Auto-generated by gen_syscall_header.py, do not edit! */\n\n")
|
||||
sys.stdout.write("#ifndef GEN_SYSCALL_H\n#define GEN_SYSCALL_H\n\n")
|
||||
sys.stdout.write("#include <syscall.h>\n")
|
||||
|
||||
for i in range(11):
|
||||
sys.stdout.write(
|
||||
|
|
Loading…
Reference in a new issue