aboutsummaryrefslogtreecommitdiff
path: root/include/rt.h
blob: 43357cdc15bed8e4e2538ada0c2f3dc15af7e039 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

extern struct rt·Context
{
    void (*fini)(void);
    void (*exit)(void);

	uintptr *auxv;
	uintptr  pagesize;
	uintptr  sysinfo;
} rt·context;

extern char **rt·environ;

void noreturn rt·exit(int code);