Browse Source

Add hidden versions of pipe()

Peter S. Mazinger 18 years ago
parent
commit
9de2043964
3 changed files with 6 additions and 0 deletions
  1. 2 0
      libc/sysdeps/linux/mips/pipe.S
  2. 2 0
      libc/sysdeps/linux/mips/pipe.c
  3. 2 0
      libc/sysdeps/linux/sh/pipe.c

+ 2 - 0
libc/sysdeps/linux/mips/pipe.S

@@ -29,3 +29,5 @@ pipe:
         j       ra
         .end    pipe
         .size   pipe,.-pipe
+
+libc_hidden_def(pipe)

+ 2 - 0
libc/sysdeps/linux/mips/pipe.c

@@ -21,3 +21,5 @@ int pipe(int *fd)
 	fd[1] = res2;
 	return(0);
 }
+libc_hidden_proto(pipe)
+libc_hidden_def(pipe)

+ 2 - 0
libc/sysdeps/linux/sh/pipe.c

@@ -27,3 +27,5 @@ int pipe(int *fd)
 	fd[1] = __res2;
 	return(0);
 }
+libc_hidden_proto(pipe)
+libc_hidden_def(pipe)