shithub: brokentoys

ref: 9a7852993c538212d5e14aa34c49ba7d990aca76
dir: /dynarray.c/

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

void
main()
{
	char buf[];

	buf = malloc(128);
	print("%d\n", nelem(buf));
	exits(nil);
}