2000-02-17 11:39:52 -08:00
|
|
|
/*
|
|
|
|
* Andy Wilson, 2-Oct-89.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <_ansi.h>
|
|
|
|
|
2003-11-27 12:15:47 -08:00
|
|
|
#ifndef _REENT_ONLY
|
2000-02-17 11:39:52 -08:00
|
|
|
long
|
2017-12-03 19:43:30 -08:00
|
|
|
atol (const char *s)
|
2000-02-17 11:39:52 -08:00
|
|
|
{
|
|
|
|
return strtol (s, NULL, 10);
|
|
|
|
}
|
2003-11-27 12:15:47 -08:00
|
|
|
#endif /* !_REENT_ONLY */
|
|
|
|
|
|
|
|
long
|
2017-12-03 19:43:30 -08:00
|
|
|
_atol_r (struct _reent *ptr, const char *s)
|
2003-11-27 12:15:47 -08:00
|
|
|
{
|
|
|
|
return _strtol_r (ptr, s, NULL, 10);
|
|
|
|
}
|
|
|
|
|