diff options
author | vodz <vodz@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2005-11-26 10:33:55 +0000 |
---|---|---|
committer | vodz <vodz@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2005-11-26 10:33:55 +0000 |
commit | 3082af9bcfed3f7ab3b39eaf7a02aa051043cbf1 (patch) | |
tree | 3f0e8887aeecd290f7c32ae413ee6e720733c94b /include/libbb.h | |
parent | afb1ad1f740adf1dd89da0617f60219e302934a1 (diff) | |
download | busybox-w32-3082af9bcfed3f7ab3b39eaf7a02aa051043cbf1.tar.gz busybox-w32-3082af9bcfed3f7ab3b39eaf7a02aa051043cbf1.tar.bz2 busybox-w32-3082af9bcfed3f7ab3b39eaf7a02aa051043cbf1.zip |
more use const for interface of libbb/compare_string_array, example usage for e2fsprogs/fsck
git-svn-id: svn://busybox.net/trunk/busybox@12534 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'include/libbb.h')
-rw-r--r-- | include/libbb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h index b7dd48775..70a9336d8 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -466,7 +466,7 @@ typedef struct { | |||
466 | } procps_status_t; | 466 | } procps_status_t; |
467 | 467 | ||
468 | extern procps_status_t * procps_scan(int save_user_arg0); | 468 | extern procps_status_t * procps_scan(int save_user_arg0); |
469 | extern unsigned short compare_string_array(const char *string_array[], const char *key); | 469 | extern unsigned short compare_string_array(const char * const string_array[], const char *key); |
470 | 470 | ||
471 | extern int my_query_module(const char *name, int which, void **buf, size_t *bufsize, size_t *ret); | 471 | extern int my_query_module(const char *name, int which, void **buf, size_t *bufsize, size_t *ret); |
472 | 472 | ||