From 781e42d66c120183e4dea1058dc539bdc4c53651 Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer Date: Fri, 26 May 2006 14:41:40 +0000 Subject: - introduce and use bb_path_wtmp_file for portability (saves 11 Bytes). - fix last.c to also look at the double-underscore UT_ defines. --- include/libbb.h | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'include/libbb.h') diff --git a/include/libbb.h b/include/libbb.h index 82d215bfe..64c91b170 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -11,6 +11,8 @@ #ifndef __LIBBUSYBOX_H__ #define __LIBBUSYBOX_H__ 1 +#include "platform.h" + #include #include #include @@ -18,14 +20,10 @@ #include #include #include -#include #include #include -#include - -#include "platform.h" #include "bb_config.h" #ifdef CONFIG_SELINUX #include @@ -41,8 +39,11 @@ #endif /* Some useful definitions */ +#undef FALSE #define FALSE ((int) 0) +#undef TRUE #define TRUE ((int) 1) +#undef SKIP #define SKIP ((int) 2) /* for mtab.c */ @@ -348,6 +349,7 @@ extern const char * const bb_path_gshadow_file; extern const char * const bb_path_group_file; extern const char * const bb_path_securetty_file; extern const char * const bb_path_motd_file; +extern const char * const bb_path_wtmp_file; extern const char * const bb_dev_null; #ifndef BUFSIZ -- cgit v1.2.3