fix #ifdef ENABLE_xxx -> #if

This commit is contained in:
Denis Vlasenko
2007-02-07 20:27:03 +00:00
parent d4eda22d0c
commit 710694f0e5
2 changed files with 2 additions and 2 deletions

View File

@ -60,7 +60,7 @@ int exists_execable(const char *filename)
return 0;
}
#ifdef ENABLE_FEATURE_EXEC_PREFER_APPLETS
#if ENABLE_FEATURE_EXEC_PREFER_APPLETS
/* just like the real execvp, but try to launch an applet named 'file' first
*/
int bb_execvp(const char *file, char *const argv[])