summaryrefslogtreecommitdiff
path: root/newlib/libc/stdlib/atol.c
blob: 6b059a8d2ee91b7c5f3d30688e971c7867218c98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/*
 * Andy Wilson, 2-Oct-89.
 */

#include <stdlib.h>
#include <_ansi.h>

long
_DEFUN (atol, (s), _CONST char *s)
{
  return strtol (s, NULL, 10);
}