shithub: brokentoys

ref: e95e3c07981eab6b39a04df5446c998194acb6a2
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);
}