mirror of
https://github.com/ksherlock/mpw.git
synced 2024-11-22 00:32:44 +00:00
14 lines
207 B
C
14 lines
207 B
C
#ifndef __winclude_unistd_h__
|
|
#define __winclude_unistd_h__
|
|
|
|
#include <io.h>
|
|
|
|
#define ftruncate(a,b) chsize(a,b)
|
|
|
|
|
|
#define STDIN_FILENO 0
|
|
#define STDOUT_FILENO 1
|
|
#define STDERR_FILENO 2
|
|
|
|
#endif
|