X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=functions%2Fstdlib%2Fatoll.c;h=767a4533babf555289e64e244614c5ff4420216b;hp=62abef1e53183fdbb8c165c70949b77bf607f996;hb=36bd8c4270f23b2633bc75db67467f327e65b218;hpb=e0769e3b1069b8acae4d8365de9ba492703303df diff --git a/functions/stdlib/atoll.c b/functions/stdlib/atoll.c index 62abef1..767a453 100644 --- a/functions/stdlib/atoll.c +++ b/functions/stdlib/atoll.c @@ -9,12 +9,17 @@ */ #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>