aboutsummaryrefslogtreecommitdiff
path: root/src/lib9/atoi.c
blob: 66ecb4efffd5c6a79e215559afc59458cc355836 (plain)
1
2
3
4
5
6
7
8
9
#include <u.h>
#include <libc.h>

int
atoi(char *s)
{
	return strtol(s, 0, 0);
}