diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-10-09 21:56:43 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-10-09 21:56:43 +0000 |
commit | c1422e5b7cdb4400f934c91bcefa3a1a96d789fb (patch) | |
tree | 7f8981b86c4ce4b5bb899f690eeb03d6645826a5 /io/sys/statvfs.h | |
parent | a4a1492eb94de4f5c5ec84a5898e994fca5f317b (diff) | |
download | glibc-c1422e5b7cdb4400f934c91bcefa3a1a96d789fb.tar.gz glibc-c1422e5b7cdb4400f934c91bcefa3a1a96d789fb.tar.xz glibc-c1422e5b7cdb4400f934c91bcefa3a1a96d789fb.zip |
Update.
Patch by khendricks@ivey.uwo.ca [libc/1382].
Diffstat (limited to 'io/sys/statvfs.h')
-rw-r--r-- | io/sys/statvfs.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/io/sys/statvfs.h b/io/sys/statvfs.h index 31d60df28b..6f497cc4a7 100644 --- a/io/sys/statvfs.h +++ b/io/sys/statvfs.h @@ -1,5 +1,5 @@ /* Definitions for getting information about a filesystem. - Copyright (C) 1998 Free Software Foundation, Inc. + Copyright (C) 1998, 1999 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 @@ -29,34 +29,34 @@ __BEGIN_DECLS /* Return information about the filesystem on which FILE resides. */ #ifndef __USE_FILE_OFFSET64 -extern int statvfs __P ((__const char *__file, struct statvfs *__buf)); +extern int statvfs (__const char *__file, struct statvfs *__buf) __THROW; #else # ifdef __REDIRECT extern int __REDIRECT (statvfs, - __P ((__const char *__file, struct statvfs *__buf)), + (__const char *__file, struct statvfs *__buf) __THROW, statvfs64); # else # define statvfs statvfs64 # endif #endif #ifdef __USE_LARGEFILE64 -extern int statvfs64 __P ((__const char *__file, struct statvfs64 *__buf)); +extern int statvfs64 (__const char *__file, struct statvfs64 *__buf) __THROW; #endif /* Return information about the filesystem containing the file FILDES refers to. */ #ifndef __USE_FILE_OFFSET64 -extern int fstatvfs __P ((int __fildes, struct statvfs *__buf)); +extern int fstatvfs (int __fildes, struct statvfs *__buf) __THROW; #else # ifdef __REDIRECT -extern int __REDIRECT (fstatvfs, __P ((int __fildes, struct statvfs *__buf)), +extern int __REDIRECT (fstatvfs, (int __fildes, struct statvfs *__buf) __THROW, fstatvfs64); # else # define fstatvfs fstatvfs64 # endif #endif #ifdef __USE_LARGEFILE64 -extern int fstatvfs64 __P ((int __fildes, struct statvfs64 *__buf)); +extern int fstatvfs64 (int __fildes, struct statvfs64 *__buf) __THROW; #endif __END_DECLS |