5 /* atol( const char * )
7 This file is part of the Public Domain C Library (PDCLib).
8 Permission is granted to use, modify, and / or redistribute at will.
11 #include <_PDCLIB_int.h>
13 long int atol( const char * s )
15 return (long int) _PDCLIB_atomax( s );
19 #include <_PDCLIB_test.h>
24 /* no tests for a simple wrapper */