diff options
author | Rob Landley <rob@landley.net> | 2006-09-12 21:42:17 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-09-12 21:42:17 +0000 |
commit | 20cc6d567f8cc21405ab05ca62a6955a5b1277b5 (patch) | |
tree | d8f7b3cd70149f3e0e291cc10a14c06917d34cb5 /include | |
parent | 1b2b5cfba81aab3e56d374ee3dcee97cde4bcb4e (diff) | |
download | busybox-20cc6d567f8cc21405ab05ca62a6955a5b1277b5.tar.gz |
Remove pointless "const". Bloatcheck says 0 bytes difference.
Diffstat (limited to 'include')
-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 cb39e7b3f..dfb7a70bd 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -189,7 +189,7 @@ extern FILE *xfopen(const char *path, const char *mode); extern int bb_fclose_nonstdin(FILE *f); extern void bb_fflush_stdout_and_exit(int retval) ATTRIBUTE_NORETURN; -extern void xstat(const char * const filename, struct stat *buf); +extern void xstat(char *filename, struct stat *buf); extern int xsocket(int domain, int type, int protocol); extern pid_t spawn(char **argv); extern pid_t xspawn(char **argv); |