X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdlib%2Fatoi.c;h=eaa9100b336562758b7d865055fdc58c967da48d;hb=d865c4403fc91d1f1ac95ba76febcee9f429bb97;hp=697c77c1117327b896947b0cc9886ee87a384627;hpb=36bd8c4270f23b2633bc75db67467f327e65b218;p=pdclib diff --git a/functions/stdlib/atoi.c b/functions/stdlib/atoi.c index 697c77c..eaa9100 100644 --- a/functions/stdlib/atoi.c +++ b/functions/stdlib/atoi.c @@ -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 #ifndef REGTEST @@ -21,11 +16,11 @@ int atoi( 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; }