trampoline/lib/lib9/atol.c

9 lines
82 B
C

#include <u.h>
#include <libc.h>
long
atol(char *s)
{
return strtol(s, 0, 0);
}