As above.

Oh I also put in a couple of compile-time warnings for the crypt stuff.
This commit is contained in:
phk 1995-10-22 14:38:48 +00:00
parent 1c6a107f27
commit a6e0327fbb
3 changed files with 2 additions and 3 deletions

View File

@ -64,8 +64,6 @@ _none_sgetrune(string, n, result)
size_t n;
char const **result;
{
int c;
if (n < 1) {
if (result)
*result = string;

View File

@ -9,7 +9,6 @@ _Read_RuneMagi(fp)
FILE *fp;
{
char *data;
void *np;
void *lastp;
_RuneLocale *rl;
_RuneEntry *rr;

View File

@ -198,4 +198,6 @@ loadlocale(category)
case LC_NUMERIC:
return (NULL);
}
/* Just in case...*/
return (NULL);
}