summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2024-09-30 18:45:25 +0300
committerEli Zaretskii <eliz@gnu.org>2024-09-30 18:45:25 +0300
commit84261bd2b702605da58c6e12660ffd076a898766 (patch)
tree9b468463fd8124e6727aab7754618fd9a93ebe95
parente376a27cf27d453f3b1c2728626950d4c4478f48 (diff)
; * nt/inc/ms-w32.h: Fix comments (bug#73444).
-rw-r--r--nt/inc/ms-w32.h4
1 files 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);