Back out ctype fix, unneded with new ctype

This commit is contained in:
Andrey A. Chernov 1994-10-09 15:25:23 +00:00
parent a73699e164
commit c31c20bb26
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=3459

View file

@ -33,7 +33,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id$
* $Id: util.c,v 1.3 1994/09/24 02:55:58 davidg Exp $
*/
#ifndef lint
@ -60,7 +60,7 @@ prcopy(src, dest, len)
int ch;
while (len--) {
ch = *src++ & 0xff;
ch = *src++;
*dest++ = isprint(ch) ? ch : '?';
}
}