shithub: riscv

ref: 2e369f0d1fad5f38c44ed13109f74cdd6ab535f2
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);
}