aboutsummaryrefslogtreecommitdiff
path: root/miscutils/less.c
diff options
context:
space:
mode:
authoraldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-06-03 19:49:21 +0000
committeraldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-06-03 19:49:21 +0000
commit7bc07ed49e9fa80c72d1fca12a406f7a2044351d (patch)
tree31f480da01f06ac69514532ce37bbcfde2c43e1b /miscutils/less.c
parentba086eee66e6ac97b1e5bcfb27acebcf961d9473 (diff)
downloadbusybox-w32-7bc07ed49e9fa80c72d1fca12a406f7a2044351d.tar.gz
busybox-w32-7bc07ed49e9fa80c72d1fca12a406f7a2044351d.tar.bz2
busybox-w32-7bc07ed49e9fa80c72d1fca12a406f7a2044351d.zip
- move #include busybox.h to the very top so we pull in the config
and eventual platform specific includes in early. git-svn-id: svn://busybox.net/trunk/busybox@15273 69ca8d6d-28ef-0310-b511-8ec308f3f277
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