summaryrefslogtreecommitdiff
path: root/src/stdlib.c
blob: 9a9425fb169e5355e56bf3b0ce33644ba5b21cdf (plain)
1
2
3
4
5
6
7
#include "stdlib.h"

char *itoa( int v, char *s, int base )
{
	//~ *s = '\0';
	return s;
}