mirror of
https://git.busybox.net/uClibc
synced 2025-10-14 01:32:00 +08:00
socketcall: re-add guard
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
This commit is contained in:
@@ -8,7 +8,18 @@
|
||||
*/
|
||||
|
||||
#include <sys/syscall.h>
|
||||
|
||||
/* At the time of this writing,
|
||||
* several arches provide the individual calls and do _not_ go through
|
||||
* this demuxer.
|
||||
*
|
||||
* Verify all arches supported by your kernel before you remove the
|
||||
* guard below!
|
||||
*/
|
||||
#ifdef __NR_socketcall
|
||||
#include <sys/socket.h>
|
||||
|
||||
#define __NR___socketcall __NR_socketcall
|
||||
_syscall2(int, __socketcall, int, call, unsigned long *, args)
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user