Add renameat to the POSIX.1-2008 namespace.

This commit is contained in:
David Schultz 2009-03-04 03:35:03 +00:00
parent 6c5fb64c29
commit 389533758b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=189355

View file

@ -344,6 +344,7 @@ char *tempnam(const char *, const char *);
#if __BSD_VISIBLE || __POSIX_VISIBLE >= 200809
ssize_t getdelim(char ** __restrict, size_t * __restrict, int,
FILE * __restrict);
int renameat(int, const char *, int, const char *);
/*
* Every programmer and his dog wrote functions called getline()
@ -379,7 +380,6 @@ void fcloseall(void);
char *fgetln(FILE *, size_t *);
__const char *fmtcheck(const char *, const char *) __format_arg(2);
int fpurge(FILE *);
int renameat(int, const char *, int, const char *);
void setbuffer(FILE *, char *, int);
int setlinebuf(FILE *);
int vasprintf(char **, const char *, __va_list)