aboutsummaryrefslogtreecommitdiff
path: root/miscutils/less.c
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-06-03 19:49:21 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-06-03 19:49:21 +0000
commitc89982dcd78b3076cf131dae3ec4ca4b83f1b4da (patch)
tree31f480da01f06ac69514532ce37bbcfde2c43e1b /miscutils/less.c
parentdeda6a5c0d00d02813cfda0d6262a24462909e9f (diff)
downloadbusybox-w32-c89982dcd78b3076cf131dae3ec4ca4b83f1b4da.tar.gz
busybox-w32-c89982dcd78b3076cf131dae3ec4ca4b83f1b4da.tar.bz2
busybox-w32-c89982dcd78b3076cf131dae3ec4ca4b83f1b4da.zip
- move #include busybox.h to the very top so we pull in the config
and eventual platform specific includes in early.
Diffstat (limited to 'miscutils/less.c')
-rw-r--r--miscutils/less.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/miscutils/less.c b/miscutils/less.c
index 940b1c865..596490483 100644
--- a/miscutils/less.c
+++ b/miscutils/less.c
@@ -30,6 +30,7 @@
30 * redirected input has been read from stdin 30 * redirected input has been read from stdin
31*/ 31*/
32 32
33#include "busybox.h"
33#include <stdio.h> 34#include <stdio.h>
34#include <stdlib.h> 35#include <stdlib.h>
35#include <string.h> 36#include <string.h>
@@ -37,8 +38,6 @@
37#include <unistd.h> 38#include <unistd.h>
38#include <ctype.h> 39#include <ctype.h>
39 40
40#include "busybox.h"
41
42#ifdef CONFIG_FEATURE_LESS_REGEXP 41#ifdef CONFIG_FEATURE_LESS_REGEXP
43#include "xregex.h" 42#include "xregex.h"
44#endif 43#endif