From 84261bd2b702605da58c6e12660ffd076a898766 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Mon, 30 Sep 2024 18:45:25 +0300 Subject: [PATCH] ; * nt/inc/ms-w32.h: Fix comments (bug#73444). --- nt/inc/ms-w32.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nt/inc/ms-w32.h b/nt/inc/ms-w32.h index 4d721244afe..d2217ced9a7 100644 --- a/nt/inc/ms-w32.h +++ b/nt/inc/ms-w32.h @@ -256,7 +256,7 @@ extern void w32_reset_stack_overflow_guard (void); #define fopen sys_fopen #define link sys_link #define localtime sys_localtime -/* we override read after including io.h, see #73444 */ +/* We redirect 'read' below, after including io.h, see bug#73444. */ #define rename sys_rename #define rmdir sys_rmdir #define select sys_select @@ -379,7 +379,7 @@ extern struct tm *localtime_r (time_t const * restrict, struct tm * restrict); #define fileno _fileno #endif -/* Here we override CRT read with our own, see #73444 */ +/* Here we redirect CRT's 'read' to our own implementation, see bug#73444. */ #undef read #define read sys_read int sys_read (int, char *, unsigned int);