Skip to content

Commit

Permalink
Add fifth parameter to linkat.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ulrich Drepper committed Feb 27, 2006
1 parent 2034622 commit 5733ab9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion posix/unistd.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 5733ab9

Please sign in to comment.