OSDN Git Service

Add hidden versions of pipe()
authorPeter S. Mazinger <ps.m@gmx.net>
Sat, 14 Jan 2006 01:51:28 +0000 (01:51 -0000)
committerPeter S. Mazinger <ps.m@gmx.net>
Sat, 14 Jan 2006 01:51:28 +0000 (01:51 -0000)
libc/sysdeps/linux/mips/pipe.S
libc/sysdeps/linux/mips/pipe.c
libc/sysdeps/linux/sh/pipe.c

index b5664f7..093b4dd 100644 (file)
@@ -29,3 +29,5 @@ pipe:
         j       ra
         .end    pipe
         .size   pipe,.-pipe
+
+libc_hidden_def(pipe)
index 65e3359..a4a7e9d 100644 (file)
@@ -21,3 +21,5 @@ int pipe(int *fd)
        fd[1] = res2;
        return(0);
 }
+libc_hidden_proto(pipe)
+libc_hidden_def(pipe)
index bfa54b7..c8540c8 100644 (file)
@@ -27,3 +27,5 @@ int pipe(int *fd)
        fd[1] = __res2;
        return(0);
 }
+libc_hidden_proto(pipe)
+libc_hidden_def(pipe)