summaryrefslogtreecommitdiff
path: root/sysdeps/mach/hurd/pipe.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/mach/hurd/pipe.c')
-rw-r--r--sysdeps/mach/hurd/pipe.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sysdeps/mach/hurd/pipe.c b/sysdeps/mach/hurd/pipe.c
index 6dca3fc70f..7a5d78c29c 100644
--- a/sysdeps/mach/hurd/pipe.c
+++ b/sysdeps/mach/hurd/pipe.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1992, 93, 94, 95, 96, 99, 2000 Free Software Foundation, Inc.
+/* Copyright (C) 1992,93,94,95,96,99,2000,2002 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -19,6 +19,7 @@
#include <errno.h>
#include <sys/socket.h>
#include <sys/stat.h>
+#include <unistd.h>
/* Create a one-way communication channel (pipe).
Actually the channel is two-way on the Hurd.
@@ -46,5 +47,5 @@ __pipe (int fds[2])
return result;
}
-
+libc_hidden_def (__pipe)
weak_alias (__pipe, pipe)