Subversion Repositories planix.SVN

Rev

Rev 2 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 - 1
#include	<stdlib.h>
2
 
3
long long
4
atoll(const char *s)
5
{
6
	return(strtoll(s, (char **)0, 10));
7
}