diff options
Diffstat (limited to 'vi.c')
-rw-r--r-- | vi.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -19,7 +19,7 @@ | |||
19 | */ | 19 | */ |
20 | 20 | ||
21 | char *vi_Version = | 21 | char *vi_Version = |
22 | "$Id: vi.c,v 1.8 2001/05/13 00:48:09 andersen Exp $"; | 22 | "$Id: vi.c,v 1.9 2001/06/23 13:49:14 andersen Exp $"; |
23 | 23 | ||
24 | /* | 24 | /* |
25 | * To compile for standalone use: | 25 | * To compile for standalone use: |
@@ -65,9 +65,6 @@ char *vi_Version = | |||
65 | //#define BB_FEATURE_VI_CRASHME // randomly pick commands to execute | 65 | //#define BB_FEATURE_VI_CRASHME // randomly pick commands to execute |
66 | #endif /* STANDALONE */ | 66 | #endif /* STANDALONE */ |
67 | 67 | ||
68 | #ifndef STANDALONE | ||
69 | #include "busybox.h" | ||
70 | #endif /* STANDALONE */ | ||
71 | #include <stdio.h> | 68 | #include <stdio.h> |
72 | #include <stdlib.h> | 69 | #include <stdlib.h> |
73 | #include <string.h> | 70 | #include <string.h> |
@@ -86,6 +83,9 @@ char *vi_Version = | |||
86 | #include <assert.h> | 83 | #include <assert.h> |
87 | #include <errno.h> | 84 | #include <errno.h> |
88 | #include <stdarg.h> | 85 | #include <stdarg.h> |
86 | #ifndef STANDALONE | ||
87 | #include "busybox.h" | ||
88 | #endif /* STANDALONE */ | ||
89 | 89 | ||
90 | #ifndef TRUE | 90 | #ifndef TRUE |
91 | #define TRUE ((int)1) | 91 | #define TRUE ((int)1) |