aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-09-12 21:42:17 +0000
committerlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-09-12 21:42:17 +0000
commit61680ced25e3ffe351d4a05a05387b09d5602c11 (patch)
treed8f7b3cd70149f3e0e291cc10a14c06917d34cb5 /include
parentf4440f180acd67f8e91728872a83aec6d7b0435f (diff)
downloadbusybox-w32-61680ced25e3ffe351d4a05a05387b09d5602c11.tar.gz
busybox-w32-61680ced25e3ffe351d4a05a05387b09d5602c11.tar.bz2
busybox-w32-61680ced25e3ffe351d4a05a05387b09d5602c11.zip
Remove pointless "const". Bloatcheck says 0 bytes difference.
git-svn-id: svn://busybox.net/trunk/busybox@16110 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'include')
-rw-r--r--include/libbb.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h
index cb39e7b3f..dfb7a70bd 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -189,7 +189,7 @@ extern FILE *xfopen(const char *path, const char *mode);
189extern int bb_fclose_nonstdin(FILE *f); 189extern int bb_fclose_nonstdin(FILE *f);
190extern void bb_fflush_stdout_and_exit(int retval) ATTRIBUTE_NORETURN; 190extern void bb_fflush_stdout_and_exit(int retval) ATTRIBUTE_NORETURN;
191 191
192extern void xstat(const char * const filename, struct stat *buf); 192extern void xstat(char *filename, struct stat *buf);
193extern int xsocket(int domain, int type, int protocol); 193extern int xsocket(int domain, int type, int protocol);
194extern pid_t spawn(char **argv); 194extern pid_t spawn(char **argv);
195extern pid_t xspawn(char **argv); 195extern pid_t xspawn(char **argv);