]> pd.if.org Git - pdclib/blobdiff - functions/stdlib/atoi.c
PDCLib includes with quotes, not <>.
[pdclib] / functions / stdlib / atoi.c
index 697c77c1117327b896947b0cc9886ee87a384627..eac0e1652ce71d03a4d5ec11889d6e8209d07d27 100644 (file)
@@ -1,14 +1,9 @@
-/* $Id$ */
-
-/* Release $Name$ */
-
 /* atoi( const char * )
 
    This file is part of the Public Domain C Library (PDCLib).
    Permission is granted to use, modify, and / or redistribute at will.
 */
 
-#include <_PDCLIB_int.h>
 #include <stdlib.h>
 
 #ifndef REGTEST
@@ -21,11 +16,10 @@ int atoi( const char * s )
 #endif
 
 #ifdef TEST
-#include <_PDCLIB_test.h>
+#include "_PDCLIB_test.h"
 
-int main()
+int main( void )
 {
-    BEGIN_TESTS;
     /* no tests for a simple wrapper */
     return TEST_RESULTS;
 }