]> pd.if.org Git - pdclib.old/blobdiff - functions/stdlib/atoll.c
Add newline translationwq
[pdclib.old] / functions / stdlib / atoll.c
index 767a4533babf555289e64e244614c5ff4420216b..fcd44adc169dc5bd131c78a727244c9535319e26 100644 (file)
@@ -1,14 +1,11 @@
 /* $Id$ */
 
-/* Release $Name$ */
-
 /* atoll( 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 long int atoll( 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;
 }