git: 9front

ref: fb1240ae3e6bec6061fe18c3aa14e2edb02cd74a
dir: /sys/src/libc/port/exits.c/

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

void (*_onexit)(void);

_Noreturn void
exits(char *s)
{
	if(_onexit != nil) (*_onexit)();
	_exits(s);
}