diff options
author | Ulrich Drepper <drepper@redhat.com> | 2006-02-27 05:44:25 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2006-02-27 05:44:25 +0000 |
commit | 5733ab93602e266664260759f65025c3b39cf8e9 (patch) | |
tree | 4ea5b9b26a5ea995d094a482ae31f84aeecf1c42 /posix | |
parent | 2034622e605665bf29ef93da37a032290c208c01 (diff) | |
download | glibc-5733ab93602e266664260759f65025c3b39cf8e9.tar.gz glibc-5733ab93602e266664260759f65025c3b39cf8e9.tar.xz glibc-5733ab93602e266664260759f65025c3b39cf8e9.zip |
Add fifth parameter to linkat.
Diffstat (limited to 'posix')
-rw-r--r-- | posix/unistd.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/posix/unistd.h b/posix/unistd.h index bcd184ba20..c8e8a0594a 100644 --- a/posix/unistd.h +++ b/posix/unistd.h @@ -758,7 +758,8 @@ extern int link (__const char *__from, __const char *__to) /* Like link but relative paths in TO and FROM are interpreted relative to FROMFD and TOFD respectively. */ extern int linkat (int __fromfd, __const char *__from, int __tofd, - __const char *__to) __THROW __nonnull ((2, 4)) __wur; + __const char *__to, int __flags) + __THROW __nonnull ((2, 4)) __wur; #endif #if defined __USE_BSD || defined __USE_XOPEN_EXTENDED || defined __USE_XOPEN2K |