OSDN Git Service

Hide __syscall_ipc
authorPeter S. Mazinger <ps.m@gmx.net>
Thu, 8 Dec 2005 14:09:13 +0000 (14:09 -0000)
committerPeter S. Mazinger <ps.m@gmx.net>
Thu, 8 Dec 2005 14:09:13 +0000 (14:09 -0000)
libc/misc/sysvipc/ipc.h
libc/sysdeps/linux/common/__syscall_ipc.c

index c1d4e76..105232f 100644 (file)
@@ -8,7 +8,7 @@
 
 /* The actual system call: all functions are multiplexed by this.  */
 extern int __syscall_ipc __P((unsigned int __call, int __first, int __second,
-                                         int __third, void *__ptr));
+                                         int __third, void *__ptr)) attribute_hidden;
 
 
 /* The codes for the functions to use the multiplexer `__syscall_ipc'.  */
index abffff9..b19637e 100644 (file)
@@ -11,6 +11,6 @@
 
 #ifdef __NR_ipc
 #define __NR___syscall_ipc __NR_ipc
-_syscall5(int, __syscall_ipc, unsigned int, call, int, first, int, second, int,
+attribute_hidden _syscall5(int, __syscall_ipc, unsigned int, call, int, first, int, second, int,
                  third, void *, ptr);
 #endif