diff options
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -81,7 +81,7 @@ bool startswith(const char *s, const char *prefix) { return memcmp(s, prefix, pl) == 0; } -int nointr_close(int fd) { +int close_nointr(int fd) { assert(fd >= 0); for (;;) { |