From 41fd2375c869daed4c5c90ee3ce902019ef70d57 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Sun, 7 Jul 2002 07:27:44 +0000 Subject: Cleanup namespace leaks by prepending __ to global stuff to indicate it is (alledgedly) private. -Erik --- libc/sysdeps/linux/common/syscalls.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'libc/sysdeps/linux') diff --git a/libc/sysdeps/linux/common/syscalls.c b/libc/sysdeps/linux/common/syscalls.c index 487df4adb..ce1bffe26 100644 --- a/libc/sysdeps/linux/common/syscalls.c +++ b/libc/sysdeps/linux/common/syscalls.c @@ -936,9 +936,10 @@ _syscall2(int, fstatfs, int, fd, struct statfs *, buf); #endif //#define __NR_socketcall 102 -#ifdef L_socketcall +#ifdef L___socketcall #ifdef __NR_socketcall -_syscall2(int, socketcall, int, call, unsigned long *, args); +#define __NR___socketcall __NR_socketcall +_syscall2(int, __socketcall, int, call, unsigned long *, args); #endif #endif -- cgit v1.2.3