mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-16 03:19:54 +08:00
13 lines
149 B
C
13 lines
149 B
C
|
/*
|
||
|
* Andy Wilson, 2-Oct-89.
|
||
|
*/
|
||
|
|
||
|
#include <stdlib.h>
|
||
|
#include <_ansi.h>
|
||
|
|
||
|
long
|
||
|
_DEFUN (atol, (s), _CONST char *s)
|
||
|
{
|
||
|
return strtol (s, NULL, 10);
|
||
|
}
|