shithub: brokentoys

ref: f64d365463e5d7b8c0d06bbf0930eeb96d1130a3
dir: /ret.c/

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

int
ret(void)
{
	if(2 > 3)
		return 2;
	else
		exits("error");
	return -1;
}

void
main()
{
	ret();
	exits(0);
}