X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdlib%2Fatoi.c;h=c7c5c29a3821d673184dea1d5e0c1d74ec7d5244;hb=d9dcf16664c81809258992e1653ecb68c8079974;hp=697c77c1117327b896947b0cc9886ee87a384627;hpb=6e5c54ff1caad0963dc5e1b840bc7fc508284994;p=pdclib.old diff --git a/functions/stdlib/atoi.c b/functions/stdlib/atoi.c index 697c77c..c7c5c29 100644 --- a/functions/stdlib/atoi.c +++ b/functions/stdlib/atoi.c @@ -1,14 +1,11 @@ /* $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 @@ -23,9 +20,8 @@ int atoi( 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; }