tumbledemerald-legacy/agbcc/libc/stdlib/atol.c

13 lines
149 B
C
Raw Normal View History

2022-05-19 19:14:13 +02:00
/*
* Andy Wilson, 2-Oct-89.
*/
#include <stdlib.h>
#include <_ansi.h>
long
_DEFUN (atol, (s), _CONST char *s)
{
return strtol (s, NULL, 10);
}