Welcome to mirror list, hosted at ThFree Co, Russian Federation.

lltoa.c « mingwex « mingw « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 28248a834a160b92e62a8535b4e1b59bcdc63b48 (plain)
1
2
3
#include <stdlib.h>
char* lltoa(long long _n, char * _c, int _i)
	{ return _i64toa (_n, _c, _i); }