Files
RedBear-OS/include/bits/unistd.h
T
jD91mZM2 44599a032e Kind of get bash to compile
Doesn't link yet due to "multiple definitions of malloc", because some are supplied by some library of bash itself. Really odd.
2018-08-02 14:37:57 +02:00

10 lines
194 B
C

#ifndef _BITS_UNISTD_H
#define _BITS_UNISTD_H
#define _POSIX_VERSION 200809L
int execl(const char *path, const char* argv0, ...);
int execle(const char *path, const char* argv0, ...);
#endif