diff options
author | Denis Vlasenko | 2006-10-11 22:16:56 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-10-11 22:16:56 +0000 |
commit | f6f43df60bbd69ae5ea83b9012beb953a2baf116 (patch) | |
tree | 80c51cd39201fcffaa9537c5abd1b10da3811ad0 /include | |
parent | 8de82bf84f7311bd74b08d9f4b4d4a6fef4649b9 (diff) | |
download | busybox-f6f43df60bbd69ae5ea83b9012beb953a2baf116.zip busybox-f6f43df60bbd69ae5ea83b9012beb953a2baf116.tar.gz |
ifupdown: stop emitting annoying/misleading error messages.
Patch by Gabriel Somlo <somlo at cmu.edu>
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h index 1d26b03..ac48411 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -430,6 +430,10 @@ char *last_char_is(const char *s, int c); char *fgets_str(FILE *file, const char *terminating_string); +int execable_file(const char *name); +char *find_execable(const char *filename); +int exists_execable(const char *filename); + extern USE_DESKTOP(long long) int uncompress(int fd_in, int fd_out); extern int inflate(int in, int out); |