X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdlib%2Fatoll.c;h=0f0fe18d20347db8cf5cd6ac730a4797d345cdd1;hb=23e170071520809fd7b2ea3514e48399358362f2;hp=62abef1e53183fdbb8c165c70949b77bf607f996;hpb=61c50ee9e390879904e28f6e041dc86f4a1a8cd7;p=pdclib.old diff --git a/functions/stdlib/atoll.c b/functions/stdlib/atoll.c index 62abef1..0f0fe18 100644 --- a/functions/stdlib/atoll.c +++ b/functions/stdlib/atoll.c @@ -8,13 +8,17 @@ Permission is granted to use, modify, and / or redistribute at will. */ -#include <_PDCLIB_int.h> +#include + +#ifndef REGTEST long long int atoll( const char * s ) { return (long long int) _PDCLIB_atomax( s ); } +#endif + #ifdef TEST #include <_PDCLIB_test.h>