diff options
author | Andreas Jaeger <aj@suse.de> | 2001-04-02 12:32:51 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2001-04-02 12:32:51 +0000 |
commit | 484ba739dfb97190d7806c99d2217a5529fa96a0 (patch) | |
tree | 8d6eb7e262573ae80982689372e4b84b7c205078 /sysdeps/unix/sysv/linux/hppa | |
parent | 60620ef6b49be78bc18b6916e70709cc4b67889d (diff) | |
download | glibc-484ba739dfb97190d7806c99d2217a5529fa96a0.tar.gz glibc-484ba739dfb97190d7806c99d2217a5529fa96a0.tar.xz glibc-484ba739dfb97190d7806c99d2217a5529fa96a0.zip |
Add prototype for __umount2.
Diffstat (limited to 'sysdeps/unix/sysv/linux/hppa')
-rw-r--r-- | sysdeps/unix/sysv/linux/hppa/umount.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/hppa/umount.c b/sysdeps/unix/sysv/linux/hppa/umount.c index 515467b1c5..29633f56fb 100644 --- a/sysdeps/unix/sysv/linux/hppa/umount.c +++ b/sysdeps/unix/sysv/linux/hppa/umount.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000 Free Software Foundation, Inc. +/* Copyright (C) 2000, 2001 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David Huggins-Daines <dhd@debian.org>, 2000. @@ -20,6 +20,8 @@ /* Since we don't have an oldumount system call, do what the kernel does down here. */ +extern log int __umount2 (char * name, int flags); + long int __umount (const char *name) { |