blob: 7483c4748a6ec29d4a866bc9360bc5b008414a07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
/* Determined from CC RTL function prototypes in online documentation */
#define mode_t unsigned int
#define fork(x) vfork(x)
#include <sys/types.h>
#include <unixio.h>
#include <unixlib.h>
#include <stdlib.h>
#include <processes.h>
#include <socket.h>
#define STDIN_FILENO 0
#define STDOUT_FILENO 1
#define STDERR_FILENO 2
extern int fnmatch(char *pattern, char *string, int options);
#include "ndir.h"
#include "pwd.h"
#include "pipe.h"
int unlink(char *path);
int link(char *from, char *to);
int rmdir(char *path);
#define stat(a, b) wrapped_stat(a, b)
#undef POSIX
|