diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-02-07 20:27:03 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-02-07 20:27:03 +0000 |
commit | 710694f0e5bae17ceba8c6f2694b856d6eab1c63 (patch) | |
tree | 4da9a21c5f9bbbf3e8cadef77f67285cabd304c4 /include | |
parent | d4eda22d0c5c23b637309f3bd9b6dd84f9235328 (diff) | |
download | busybox-w32-710694f0e5bae17ceba8c6f2694b856d6eab1c63.tar.gz busybox-w32-710694f0e5bae17ceba8c6f2694b856d6eab1c63.tar.bz2 busybox-w32-710694f0e5bae17ceba8c6f2694b856d6eab1c63.zip |
fix #ifdef ENABLE_xxx -> #if
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h index d6f08ff73..d5a20d365 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -561,7 +561,7 @@ int execable_file(const char *name); | |||
561 | char *find_execable(const char *filename); | 561 | char *find_execable(const char *filename); |
562 | int exists_execable(const char *filename); | 562 | int exists_execable(const char *filename); |
563 | 563 | ||
564 | #ifdef ENABLE_FEATURE_EXEC_PREFER_APPLETS | 564 | #if ENABLE_FEATURE_EXEC_PREFER_APPLETS |
565 | int bb_execvp(const char *file, char *const argv[]); | 565 | int bb_execvp(const char *file, char *const argv[]); |
566 | #define BB_EXECVP(prog,cmd) bb_execvp(prog,cmd) | 566 | #define BB_EXECVP(prog,cmd) bb_execvp(prog,cmd) |
567 | #define BB_EXECLP(prog,cmd,...) \ | 567 | #define BB_EXECLP(prog,cmd,...) \ |