diff options
Diffstat (limited to 'libbb/login.c')
-rw-r--r-- | libbb/login.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libbb/login.c b/libbb/login.c index ba9f4d2..07247a8 100644 --- a/libbb/login.c +++ b/libbb/login.c @@ -9,9 +9,9 @@ * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. */ -#include <sys/param.h> /* MAXHOSTNAMELEN */ -#include <sys/utsname.h> #include "libbb.h" +/* After libbb.h, since it needs sys/types.h on some systems */ +#include <sys/utsname.h> #define LOGIN " login: " |