use unistd.h before _POSIX_VERSION

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko 2011-02-08 05:35:04 +01:00
parent 66c5b12dbf
commit 698e8095fa
2 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,6 @@
#include <sys/wait.h>
#include <termios.h>
#include <time.h>
#include <unistd.h>
#include <sys/param.h>
#ifdef HAVE_MNTENT_H
# include <mntent.h>

View File

@ -362,6 +362,7 @@ typedef unsigned smalluint;
#endif
#include <unistd.h>
#if (defined(_POSIX_VERSION) && _POSIX_VERSION >= 200809L) || defined(__GLIBC__)
# define fdprintf dprintf
#endif