diff options
author | Ulrich Drepper <drepper@redhat.com> | 2007-05-07 04:23:14 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2007-05-07 04:23:14 +0000 |
commit | aa75f64c626d40a05177e2d25053db988c339779 (patch) | |
tree | 5c0790847aa801ad7a6288f3ed34b0578a45b88f /posix | |
parent | 711deb05844be0f8ede7b4ef30838b969d8571bc (diff) | |
download | glibc-aa75f64c626d40a05177e2d25053db988c339779.tar.gz glibc-aa75f64c626d40a05177e2d25053db988c339779.tar.xz glibc-aa75f64c626d40a05177e2d25053db988c339779.zip |
* posix/unistd.h: Remove __THROW from fdatasync.
Diffstat (limited to 'posix')
-rw-r--r-- | posix/unistd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/posix/unistd.h b/posix/unistd.h index 577925c0fa..a86968a8db 100644 --- a/posix/unistd.h +++ b/posix/unistd.h @@ -1062,7 +1062,7 @@ extern int lockf64 (int __fd, int __cmd, __off64_t __len) __wur; #if defined __USE_POSIX199309 || defined __USE_UNIX98 /* Synchronize at least the data part of a file with the underlying media. */ -extern int fdatasync (int __fildes) __THROW; +extern int fdatasync (int __fildes); #endif /* Use POSIX199309 */ |