summaryrefslogtreecommitdiff
path: root/src/nonstd/struct_atexit.c
blob: 482bbed10ab9c6b6b1425d8fc4036d3abf359712 (plain)
1
2
3
4
5
6
7
8
#include <nonstd/internal.h>

struct atexit {
	int nfns;
	void (*fns[32])(void);
	struct atexit *next;
	struct atexit *prev;
};