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-w32-a77947f5bb9ef38b0f1fc6a2a5b500fa6ade601e.tar.gz busybox-w32-a77947f5bb9ef38b0f1fc6a2a5b500fa6ade601e.tar.bz2 busybox-w32-a77947f5bb9ef38b0f1fc6a2a5b500fa6ade601e.zip |
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); | |||
357 | 357 | ||
358 | int bb_make_directory (char *path, long mode, int flags); | 358 | int bb_make_directory (char *path, long mode, int flags); |
359 | 359 | ||
360 | int get_signum(char *name); | 360 | int get_signum(const char *name); |
361 | char *get_signame(int number); | 361 | const char *get_signame(int number); |
362 | 362 | ||
363 | char *bb_simplify_path(const char *path); | 363 | char *bb_simplify_path(const char *path); |
364 | 364 | ||