Remove pointless "const". Bloatcheck says 0 bytes difference.

This commit is contained in:
Rob Landley
2006-09-12 21:42:17 +00:00
parent 1b2b5cfba8
commit 20cc6d567f
6 changed files with 9 additions and 8 deletions

View File

@@ -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);