shithub: brokentoys

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