mirror of
https://git.busybox.net/uClibc
synced 2025-05-08 23:02:28 +08:00
socketcall: re-add guard
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
This commit is contained in:
parent
38c29ff319
commit
5c2f94e7b4
@ -8,7 +8,18 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <sys/syscall.h>
|
#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>
|
#include <sys/socket.h>
|
||||||
|
|
||||||
#define __NR___socketcall __NR_socketcall
|
#define __NR___socketcall __NR_socketcall
|
||||||
_syscall2(int, __socketcall, int, call, unsigned long *, args)
|
_syscall2(int, __socketcall, int, call, unsigned long *, args)
|
||||||
|
|
||||||
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user