X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=functions%2Fstdlib%2Fatoll.c;h=f7fa8244023068be643352661d8f721feb77ece2;hp=767a4533babf555289e64e244614c5ff4420216b;hb=da0f3f353d417fed71f358a48d5d5394145e460d;hpb=36bd8c4270f23b2633bc75db67467f327e65b218 diff --git a/functions/stdlib/atoll.c b/functions/stdlib/atoll.c index 767a453..f7fa824 100644 --- a/functions/stdlib/atoll.c +++ b/functions/stdlib/atoll.c @@ -1,14 +1,9 @@ -/* $Id$ */ - -/* Release $Name$ */ - /* atoll( 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,10 @@ long long int atoll( const char * s ) #endif #ifdef TEST -#include <_PDCLIB_test.h> +#include "_PDCLIB_test.h" -int main() +int main( void ) { - BEGIN_TESTS; /* no tests for a simple wrapper */ return TEST_RESULTS; }