[WINDOWSNT]: Use sys_read and sys_write to ensure correct line-ending

convention is followed.
This commit is contained in:
Jason Rumney 2000-03-01 20:55:11 +00:00
parent 37ad8b6355
commit e15b6288db

View file

@ -48,8 +48,8 @@ Lisp_Object Vx_bitmap_file_path;
#define min(x,y) ((x) > (y) ? (y) : (x))
#ifdef WINDOWSNT
#define read _read
#define write _write
#define read sys_read
#define write sys_write
#include <windows.h>
extern int errno;
#endif /* not WINDOWSNT */