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>
16 long int atol( const char * s )
18 return (long int) _PDCLIB_atomax( s );
24 #include <_PDCLIB_test.h>
29 /* no tests for a simple wrapper */