]> pd.if.org Git - pdclib.old/blobdiff - functions/stdlib/atol.c
PDCLIB-3: Add _PDCLIB_unpackwint to enable UTF-16 platforms to pass a "packed UTF...
[pdclib.old] / functions / stdlib / atol.c
index 00b933d7dc0480ac4d44f4b60f857b7854039351..00ce4474dd3cdbb1943b58cf3554107773c99502 100644 (file)
@@ -1,14 +1,11 @@
 /* $Id$ */
 
-/* Release $Name$ */
-
 /* atol( 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
@@ -23,9 +20,8 @@ long int atol( const char * s )
 #ifdef TEST
 #include <_PDCLIB_test.h>
 
-int main()
+int main( void )
 {
-    BEGIN_TESTS;
     /* no tests for a simple wrapper */
     return TEST_RESULTS;
 }