diff options
Diffstat (limited to 'gdb/testsuite/lib/read1.c')
-rw-r--r-- | gdb/testsuite/lib/read1.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/testsuite/lib/read1.c b/gdb/testsuite/lib/read1.c index e449717..c4c9ee2 100644 --- a/gdb/testsuite/lib/read1.c +++ b/gdb/testsuite/lib/read1.c @@ -1,6 +1,6 @@ /* This is part of GDB, the GNU debugger. - Copyright 2011-2024 Free Software Foundation, Inc. + Copyright 2011-2025 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -62,7 +62,7 @@ init_readmore (int *method, unsigned int *sleep, FILE **log) *log = fopen (env, "w"); } -/* Wrap 'read', and modify it's behaviour using READ1 or READMORE style. */ +/* Wrap 'read', and modify it's behavior using READ1 or READMORE style. */ ssize_t read (int fd, void *buf, size_t count) @@ -89,7 +89,7 @@ read (int fd, void *buf, size_t count) init_readmore (&readmore_method, &readmore_sleep, &log); } - /* Only modify 'read' behaviour when reading from the terminal. */ + /* Only modify 'read' behavior when reading from the terminal. */ if (isatty (fd) == 0) goto fallback; |