aboutsummaryrefslogtreecommitdiffstats
path: root/code/tools/lcc/include/alpha/osf/ctype.h
diff options
context:
space:
mode:
Diffstat (limited to 'code/tools/lcc/include/alpha/osf/ctype.h')
-rw-r--r--code/tools/lcc/include/alpha/osf/ctype.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/code/tools/lcc/include/alpha/osf/ctype.h b/code/tools/lcc/include/alpha/osf/ctype.h
deleted file mode 100644
index 02e0131..0000000
--- a/code/tools/lcc/include/alpha/osf/ctype.h
+++ /dev/null
@@ -1,25 +0,0 @@
-#ifndef __CTYPE
-#define __CTYPE
-
-extern int isalnum(int);
-extern int isalpha(int);
-extern int iscntrl(int);
-extern int isdigit(int);
-extern int isgraph(int);
-extern int islower(int);
-extern int isprint(int);
-extern int ispunct(int);
-extern int isspace(int);
-extern int isupper(int);
-extern int isxdigit(int);
-extern int tolower(int);
-extern int toupper(int);
-
-#define __U 01
-#define __L 02
-#define __N 04
-#define __S 010
-#define __P 020
-#define __C 040
-
-#endif /* __CTYPE */