Back out part of ctype fixes, unneded with new ctype

This commit is contained in:
Andrey A. Chernov 1994-10-09 15:22:35 +00:00
parent bac719f599
commit a73699e164
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=3458
3 changed files with 4 additions and 4 deletions

View File

@ -95,9 +95,9 @@ read_dir_file ()
{
int dev;
int ino;
unsigned char *strp;
char *strp;
FILE *fp;
unsigned char buf[512];
char buf[512];
static char *path = 0;
if (path == 0)

View File

@ -504,7 +504,7 @@ decode_header (header, st, stdp, wantug)
long
from_oct (digs, where)
register int digs;
register unsigned char *where;
register char *where;
{
register long value;

View File

@ -837,7 +837,7 @@ quote_copy_string (string)
from_here = string;
while (*from_here)
{
c = *from_here++ & 0xff;
c = *from_here++;
if (c == '\\')
{
if (!copying)