diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-09-27 14:19:16 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-09-27 14:19:16 +0000 |
commit | a77947f5bb9ef38b0f1fc6a2a5b500fa6ade601e (patch) | |
tree | 3ad369f8468a397c6731ccd5c1631e1bc33612d6 /include | |
parent | be905d550c96da8c75d697842ba4169a62d05190 (diff) | |
download | busybox-a77947f5bb9ef38b0f1fc6a2a5b500fa6ade601e.tar.gz |
kill: fix bugs (kill -l output was horrible), fix style, constify data
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/libbb.h b/include/libbb.h index 2a5b38144..05927f1de 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -357,8 +357,8 @@ char *dirname (char *path); int bb_make_directory (char *path, long mode, int flags); -int get_signum(char *name); -char *get_signame(int number); +int get_signum(const char *name); +const char *get_signame(int number); char *bb_simplify_path(const char *path); |