summaryrefslogtreecommitdiff
path: root/sys/src/libc/port/exits.c
blob: f4d76a6c664fe4c28c8ae5c95b6b0fd8e781b026 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <u.h>
#include <libc.h>

void (*_onexit)(void);

#pragma profile off

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