X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=functions%2Fctype%2Ftoupper.c;h=2ef335960232d69a4c0557bde7d7d6240c15aa4b;hp=2168134631d7743de1122e151591b8a9267a1e3c;hb=d865c4403fc91d1f1ac95ba76febcee9f429bb97;hpb=2040228f27d623585d339dec175c4e779ca9edb5 diff --git a/functions/ctype/toupper.c b/functions/ctype/toupper.c index 2168134..2ef3359 100644 --- a/functions/ctype/toupper.c +++ b/functions/ctype/toupper.c @@ -18,6 +18,7 @@ int toupper( int c ) #endif #ifdef TEST + #include "_PDCLIB_test.h" int main( void ) @@ -30,4 +31,5 @@ int main( void ) TESTCASE( toupper( '[' ) == '[' ); return TEST_RESULTS; } + #endif