#include <features.h>
+#ifndef FALSE
#define FALSE ((int) 0)
+#endif
+
+#ifndef TRUE
#define TRUE ((int) 1)
+#endif
extern void error_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2)));
extern void error_msg_and_die(const char *s, ...) __attribute__ ((noreturn, format (printf, 1, 2)));
*/
#include "config.h"
+#include "includes.h"
+#include "opkg_download.h"
+#include "opkg_message.h"
+
+#include "sprintf_alloc.h"
+#include "xsystem.h"
+#include "file_util.h"
+#include "opkg_defines.h"
+#include "libbb/libbb.h"
+
#ifdef HAVE_CURL
#include <curl/curl.h>
#endif
#include <openssl/hmac.h>
#endif
-#include "includes.h"
-#include "opkg_download.h"
-#include "opkg_message.h"
-
-#include "sprintf_alloc.h"
-#include "xsystem.h"
-#include "file_util.h"
-#include "opkg_defines.h"
-#include "libbb/libbb.h"
-
#ifdef HAVE_PATHFINDER
#include "opkg_pathfinder.h"
#endif