aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-02-07 20:27:03 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-02-07 20:27:03 +0000
commitdeed0b82815152ae649e2afb9b2d7f387ea1f983 (patch)
tree4da9a21c5f9bbbf3e8cadef77f67285cabd304c4 /include
parentd6153c8a03160ac998a9ea686b94dcc6dbbdf646 (diff)
downloadbusybox-w32-deed0b82815152ae649e2afb9b2d7f387ea1f983.tar.gz
busybox-w32-deed0b82815152ae649e2afb9b2d7f387ea1f983.tar.bz2
busybox-w32-deed0b82815152ae649e2afb9b2d7f387ea1f983.zip
fix #ifdef ENABLE_xxx -> #if
git-svn-id: svn://busybox.net/trunk/busybox@17807 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'include')
-rw-r--r--include/libbb.h2
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);
561char *find_execable(const char *filename); 561char *find_execable(const char *filename);
562int exists_execable(const char *filename); 562int exists_execable(const char *filename);
563 563
564#ifdef ENABLE_FEATURE_EXEC_PREFER_APPLETS 564#if ENABLE_FEATURE_EXEC_PREFER_APPLETS
565int bb_execvp(const char *file, char *const argv[]); 565int 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,...) \