shithub: riscv

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

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

void (*_onexit)(void);

#pragma profile off

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