diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2006-01-14 01:51:28 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2006-01-14 01:51:28 +0000 |
commit | 9de20439642fe8a7d46abfba5aa27264d47b5a31 (patch) | |
tree | fbbb50c35ab62a44ca77d159d950a966e53edae3 /libc/sysdeps/linux/sh | |
parent | 4dcc5dd8a7cdb20a5f5ca7fb20beb30297b93de5 (diff) |
Add hidden versions of pipe()
Diffstat (limited to 'libc/sysdeps/linux/sh')
-rw-r--r-- | libc/sysdeps/linux/sh/pipe.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/sh/pipe.c b/libc/sysdeps/linux/sh/pipe.c index bfa54b7c9..c8540c897 100644 --- a/libc/sysdeps/linux/sh/pipe.c +++ b/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) |