diff options
author | Zack Weinberg <zackw@panix.com> | 2018-02-05 14:38:46 -0500 |
---|---|---|
committer | Zack Weinberg <zackw@panix.com> | 2018-02-05 19:58:01 -0500 |
commit | de6da571eeff41e69a28744b4c57e219828e26bc (patch) | |
tree | 7ec277d6502791738c5145d94788bf47ec317f2f /stdio-common/tstgetln.c | |
parent | c2b84df9b0207d1233b2de07b836a773889d93d8 (diff) | |
download | glibc-de6da571eeff41e69a28744b4c57e219828e26bc.tar.gz glibc-de6da571eeff41e69a28744b4c57e219828e26bc.tar.xz glibc-de6da571eeff41e69a28744b4c57e219828e26bc.zip |
Remove some unnecessary redefinitions of std symbols.
Two files in stdio-common were unnecessarily redefining some standard symbols as their _IO_ aliases. * stdio-common/vfprintf.c: Don't redefine FILE, va_list, or BUFSIZ. * stdio-common/tstgetln.c: Don't redefine ssize_t.
Diffstat (limited to 'stdio-common/tstgetln.c')
-rw-r--r-- | stdio-common/tstgetln.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/stdio-common/tstgetln.c b/stdio-common/tstgetln.c index a18f754e35..6960e68620 100644 --- a/stdio-common/tstgetln.c +++ b/stdio-common/tstgetln.c @@ -16,8 +16,6 @@ <http://www.gnu.org/licenses/>. */ #include <stdio.h> -#undef ssize_t -#define ssize_t _IO_ssize_t int main (int argc, char *argv[]) |