aboutsummaryrefslogtreecommitdiff
path: root/include/libbb.h
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-09-27 14:19:16 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-09-27 14:19:16 +0000
commitcb78d58c497f1d6093499a4bb46b6c43855bc065 (patch)
tree3ad369f8468a397c6731ccd5c1631e1bc33612d6 /include/libbb.h
parent8dc4d8350bcf60e381ad7c9a4a74bb72ba72fd38 (diff)
downloadbusybox-w32-cb78d58c497f1d6093499a4bb46b6c43855bc065.tar.gz
busybox-w32-cb78d58c497f1d6093499a4bb46b6c43855bc065.tar.bz2
busybox-w32-cb78d58c497f1d6093499a4bb46b6c43855bc065.zip
kill: fix bugs (kill -l output was horrible), fix style, constify data
git-svn-id: svn://busybox.net/trunk/busybox@16234 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'include/libbb.h')
-rw-r--r--include/libbb.h4
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
358int bb_make_directory (char *path, long mode, int flags); 358int bb_make_directory (char *path, long mode, int flags);
359 359
360int get_signum(char *name); 360int get_signum(const char *name);
361char *get_signame(int number); 361const char *get_signame(int number);
362 362
363char *bb_simplify_path(const char *path); 363char *bb_simplify_path(const char *path);
364 364