2005-12-15 Thomas Schwinge <tschwinge@gnu.org>

* io/xmknodat.c: Include <stddef.h>.
	* misc/futimesat.c: Remove weak_alias and correct stub_warning.
	* stdio-common/renameat.c (renameat): Fix typo.
This commit is contained in:
Roland McGrath 2005-12-20 07:31:14 +00:00
parent 00c2b3b91d
commit 322a48c5bf
3 changed files with 3 additions and 4 deletions

View File

@ -18,6 +18,7 @@
#include <errno.h> #include <errno.h>
#include <fcntl.h> #include <fcntl.h>
#include <stddef.h>
#include <sys/types.h> #include <sys/types.h>
#include <sys/stat.h> #include <sys/stat.h>

View File

@ -42,7 +42,5 @@ futimesat (fd, file, tvp)
return -1; return -1;
} }
weak_alias (__utimes, utimes) stub_warning (futimesat)
stub_warning (utimes)
#include <stub-tag.h> #include <stub-tag.h>

View File

@ -29,7 +29,7 @@ renameat (oldfd, old, newfd, new)
int newfd; int newfd;
const char *new; const char *new;
{ {
if ((oldfd < 0 & oldfd !_ AT_FDCWD) || (newfd < 0 && newfd != AT_FDCWD)) if ((oldfd < 0 & oldfd != AT_FDCWD) || (newfd < 0 && newfd != AT_FDCWD))
{ {
__set_errno (EBADF); __set_errno (EBADF);
return -1; return -1;