fix placement of multiple inclusion guard endif in internal syscall.h
authorRich Felker <dalias@aerifal.cx>
Tue, 27 May 2014 04:09:05 +0000 (00:09 -0400)
committerRich Felker <dalias@aerifal.cx>
Tue, 27 May 2014 04:09:05 +0000 (00:09 -0400)
this was messed up during a recent commit when the socketcall macros
were moved to the common internal/syscall.h, and the following commit
expanded the problem by adding more new content outside the guard.

src/internal/syscall.h

index 9dd9299503129305a684bae50179d8df598c6c64..b6b39aec0c4c0cad7197843ef081066c20317a7c 100644 (file)
@@ -163,8 +163,6 @@ long __syscall_ret(unsigned long), __syscall(syscall_arg_t, ...),
 #define SYS_fadvise SYS_fadvise64_64
 #endif
 
-#endif
-
 /* socketcall calls */
 
 #define __SC_socket      1
@@ -205,3 +203,5 @@ long __syscall_ret(unsigned long), __syscall(syscall_arg_t, ...),
 
 #define __sys_open_cp(...) __SYSCALL_DISP(__sys_open_cp,,__VA_ARGS__)
 #define sys_open_cp(...) __syscall_ret(__sys_open_cp(__VA_ARGS__))
+
+#endif