X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdlib%2Fatol.c;h=df17e83d44b15c912ac163831b3d0b29b0cf64f7;hb=7517a992da74749b360ee20aa14febcc3cf314d5;hp=00b933d7dc0480ac4d44f4b60f857b7854039351;hpb=36bd8c4270f23b2633bc75db67467f327e65b218;p=pdclib diff --git a/functions/stdlib/atol.c b/functions/stdlib/atol.c index 00b933d..df17e83 100644 --- a/functions/stdlib/atol.c +++ b/functions/stdlib/atol.c @@ -1,14 +1,9 @@ -/* $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 #ifndef REGTEST @@ -21,11 +16,11 @@ long int atol( const char * s ) #endif #ifdef TEST -#include <_PDCLIB_test.h> -int main() +#include "_PDCLIB_test.h" + +int main( void ) { - BEGIN_TESTS; /* no tests for a simple wrapper */ return TEST_RESULTS; }