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

extern struct rt·context
{
    void (*init)(void);
    void (*fini)(void);
    void (*exit)(void);
} rt·context;

extern char **rt·environ;

void rt·exit(int code);