From 95f70db1388c2bc04bdcd6c3ee9d7a0b0804fe85 Mon Sep 17 00:00:00 2001 From: mickey Date: Thu, 12 Dec 1996 08:19:25 +0000 Subject: [PATCH] missed. we've got ctype.h macros in stand.h! --- sys/lib/libsa/cd9660.c | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/sys/lib/libsa/cd9660.c b/sys/lib/libsa/cd9660.c index 0d0704f34c3..2ee8ac91f0f 100644 --- a/sys/lib/libsa/cd9660.c +++ b/sys/lib/libsa/cd9660.c @@ -1,3 +1,4 @@ +/* $OpenBSD: cd9660.c,v 1.2 1996/12/12 08:19:25 mickey Exp $ */ /* $NetBSD: cd9660.c,v 1.1 1996/09/30 16:01:19 ws Exp $ */ /* @@ -38,6 +39,7 @@ * blocksizes other than 2048 bytes, multi-extent files, etc. */ #include +#include #include @@ -86,13 +88,6 @@ struct ptable_ent { #define cdb2devb(bno) ((bno) * ISO_DEFAULT_BLOCK_SIZE / DEV_BSIZE) -static int -toupper(c) - int c; -{ - return c >= 'a' && c <= 'z' ? c - 'a' + 'A' : c; -} - static int pnmatch(path, pp) char *path; -- 2.20.1