ref: 0aa9e440f8c9e7b5f6bc7b215eccdf3ee9359c7e dir: /sys/src/libc/port/exits.c/
#include <u.h> #include <libc.h> void (*_onexit)(void); #pragma profile off void exits(char *s) { if(_onexit != nil) (*_onexit)(); _exits(s); }