shithub: brokentoys

ref: a71ef347b03036c8e0a175f4084bc2440d0751e0
dir: /consreadnum.c/

View raw version
#include <u.h>
#include <libc.h>

void
main()
{
	char tmp[64];
	int size;

	size = 2*1024*1024*1024;
	if(size > sizeof tmp || size < 0)
		size = sizeof tmp;
	snprint(tmp, sizeof tmp, "%*lud", size-1, 409234UL);
	tmp[size-1] = ' ';
	print("%s\n", tmp);
	exits(nil);
}