]> pd.if.org Git - pdclib/blobdiff - functions/ctype/toupper.c
Whitespace cleanups.
[pdclib] / functions / ctype / toupper.c
index 801c8ef55b18321cc5773b2d42bda2ff2561a2f2..2ef335960232d69a4c0557bde7d7d6240c15aa4b 100644 (file)
@@ -1,5 +1,3 @@
-/* $Id$ */
-
 /* toupper( int )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -20,7 +18,8 @@ int toupper( int c )
 #endif
 
 #ifdef TEST
-#include <_PDCLIB_test.h>
+
+#include "_PDCLIB_test.h"
 
 int main( void )
 {
@@ -32,4 +31,5 @@ int main( void )
     TESTCASE( toupper( '[' ) == '[' );
     return TEST_RESULTS;
 }
+
 #endif