mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-18 02:47:36 +00:00
[WINDOWSNT]: Use sys_read and sys_write to ensure correct line-ending
convention is followed.
This commit is contained in:
parent
37ad8b6355
commit
e15b6288db
1 changed files with 2 additions and 2 deletions
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Reference in a new issue