mpw/winclude/unistd.h

14 lines
207 B
C
Raw Permalink Normal View History

2016-11-14 02:15:26 +00:00
#ifndef __winclude_unistd_h__
#define __winclude_unistd_h__
#include <io.h>
#define ftruncate(a,b) chsize(a,b)
2017-07-04 20:03:25 +00:00
#define STDIN_FILENO 0
#define STDOUT_FILENO 1
#define STDERR_FILENO 2
2016-11-14 02:15:26 +00:00
#endif