summaryrefslogtreecommitdiff
path: root/sys/src/libc/port/atoll.c
blob: d4d794248421803975fc496a891495174aad4ed1 (plain)
1
2
3
4
5
6
7
8
#include <u.h>
#include <libc.h>

vlong
atoll(char *s)
{
	return strtoll(s, nil, 10);
}