shithub: battleship

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