Welcome to mirror list, hosted at ThFree Co, Russian Federation.

atol.c « stdlib « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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);
}