diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2022-12-14 22:12:20 +0100 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2022-12-14 22:12:20 +0100 |
| commit | 7536d000ac9a5188378f2749ecfd7f0ccb437573 (patch) | |
| tree | e19b0da62b826dd9c6a7b0425ac3ec568a0fe434 /lib/sys/io.h | |
| parent | d179f1846f9372920ef02f08cfb4d3abe99b383f (diff) | |
first try to pipe stuff
Diffstat (limited to 'lib/sys/io.h')
| -rw-r--r-- | lib/sys/io.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/sys/io.h b/lib/sys/io.h new file mode 100644 index 0000000..3048ebe --- /dev/null +++ b/lib/sys/io.h @@ -0,0 +1,11 @@ +#ifndef IO_H +#define IO_H + +#include "write.h" +#include "read.h" + +#define STDIN_FD 0 +#define STDOUT_FD 1 +#define STDERR_FD 2 + +#endif |