skip_whitespace() shouldn't claim its return value is const, it doesn't know

that and callers wind up typecasting it back.
This commit is contained in:
Rob Landley
2006-06-18 20:20:07 +00:00
parent 14d7065ef1
commit ea224be6aa
12 changed files with 65 additions and 193 deletions

View File

@@ -20,9 +20,9 @@
*
*/
#include "libbb.h"
#include <string.h>
#include <crypt.h>
#include "libbb.h"
char *pw_encrypt(const char *clear, const char *salt)