07955c83c6
* Finally bring syscall.h up to speed and include all syscalls in the syscall module of the C library. * Remove the third-party obfuscated C demos (we have nyancat, good enough) * Fix userspace apps to build without complaining about undeclared strtok_r by disable __STRICT_ANSI__ * Fix .eh_frame by including the proper stuff with libgcc.
9 lines
102 B
C
9 lines
102 B
C
#ifndef LDLIB_H
|
|
#define LDLIB_H
|
|
|
|
#include <syscall.h>
|
|
#include <stdint.h>
|
|
#include <unistd.h>
|
|
|
|
#endif
|