diff options
author | 2005-03-08 15:43:31 +0000 | |
---|---|---|
committer | 2005-03-08 15:43:31 +0000 | |
commit | ad9dc8998785c9fcae88c6024507197bf64fd57c (patch) | |
tree | 212720d12ec9473699cc80617bfd2f1453bda604 /lib/libc/stdio | |
parent | handle snprintf() returning -1. (diff) | |
download | wireguard-openbsd-ad9dc8998785c9fcae88c6024507197bf64fd57c.tar.xz wireguard-openbsd-ad9dc8998785c9fcae88c6024507197bf64fd57c.zip |
fix typo in comment.
Diffstat (limited to 'lib/libc/stdio')
-rw-r--r-- | lib/libc/stdio/local.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/stdio/local.h b/lib/libc/stdio/local.h index 10dd1782198..e70b0573d75 100644 --- a/lib/libc/stdio/local.h +++ b/lib/libc/stdio/local.h @@ -1,4 +1,4 @@ -/* $OpenBSD: local.h,v 1.6 2003/06/02 20:18:37 millert Exp $ */ +/* $OpenBSD: local.h,v 1.7 2005/03/08 15:43:31 moritz Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -56,7 +56,7 @@ extern void __atexit_register_cleanup(void (*)()); extern int __sdidinit; /* - * Return true iff the given FILE cannot be written now. + * Return true if the given FILE cannot be written now. */ #define cantwrite(fp) \ ((((fp)->_flags & __SWR) == 0 || (fp)->_bf._base == NULL) && \ |