From 1699c8693a323878e67246783748eb77a2d4a4fd Mon Sep 17 00:00:00 2001 From: Morten Delenk Date: Wed, 27 Jul 2016 15:10:18 +0200 Subject: [PATCH] wat --- ctype/isAlpha.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ctype/isAlpha.cpp b/ctype/isAlpha.cpp index 9ccfac1..214ad6a 100644 --- a/ctype/isAlpha.cpp +++ b/ctype/isAlpha.cpp @@ -1,7 +1,7 @@ #include #include "_ctype.h" #include -extern "C" isalpha(int c) { +extern "C" int isalpha(int c) { assert(c<256); return ascii_table[c] & (UPPER|LOWER); } \ No newline at end of file