ref: a71ef347b03036c8e0a175f4084bc2440d0751e0 dir: /ret.c/
#include <u.h> #include <libc.h> int ret(void) { if(2 > 3) return 2; else exits("error"); return -1; } void main() { ret(); exits(0); }