Subversion Repositories HelenOS

Rev

Rev 3222 | Rev 3820 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3222 Rev 3756
Line 51... Line 51...
51
#include <loader/pcb.h>
51
#include <loader/pcb.h>
52
 
52
 
53
extern char _heap;
53
extern char _heap;
54
extern int main(int argc, char *argv[]);
54
extern int main(int argc, char *argv[]);
55
 
55
 
-
 
56
int _errno;
-
 
57
 
56
void _exit(int status)
58
void _exit(int status)
57
{
59
{
58
    thread_exit(status);
60
    thread_exit(status);
59
}
61
}
60
 
62