diff options
| author | rillig <rillig@NetBSD.org> | 2021-09-11 18:38:25 +0000 |
|---|---|---|
| committer | rillig <rillig@NetBSD.org> | 2021-09-11 18:38:25 +0000 |
| commit | 3aee32ce6365528337ffd1d51b3aa9f745c5cb72 (patch) | |
| tree | 931d798312f7bfc97a90eb0ecad2d316cb6c25d7 /include | |
| parent | a51bb77f09933e2ce8c8ac8a9fc1f2f400e730d6 (diff) | |
stdio.h: remove outdated comment about fpos_t
The 'fairly grotesque' from 1994-04-03 referred to the conditional
definition of the type fpos_t, using two different integer types that
both happened to be 64-bit.
When stdio was changed on 2012-01-22 to keep track of the mbstate, the
conditional type definition was removed and the comment no longer made
sense.
Diffstat (limited to 'include')
| -rw-r--r-- | include/stdio.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/include/stdio.h b/include/stdio.h index 666a1b9b10d..0380344fd93 100644 --- a/include/stdio.h +++ b/include/stdio.h @@ -1,4 +1,4 @@ -/* $NetBSD: stdio.h,v 1.101 2021/09/11 16:58:38 rillig Exp $ */ +/* $NetBSD: stdio.h,v 1.102 2021/09/11 18:38:25 rillig Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -66,11 +66,6 @@ typedef __va_list va_list; #include <sys/null.h> -/* - * This is fairly grotesque, but pure ANSI code must not inspect the - * innards of an fpos_t anyway. The library internally uses off_t, - * which we assume is exactly as big as eight chars. - */ typedef struct __sfpos { __off_t _pos; __mbstate_t _mbstate_in, _mbstate_out; |
