1 /* Test of closein module.
2 Copyright (C) 2007-2020 Free Software Foundation, Inc.
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 3, or (at your option)
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, see <https://www.gnu.org/licenses/>. */
17 /* Written by Eric Blake. */
27 #include "binary-io.h"
28 #include "ignore-value.h"
30 /* With no arguments, do nothing. With arguments, attempt to consume
31 first 6 bytes of stdin. In either case, let exit() take care of
32 closing std streams and changing exit status if ferror(stdin). */
34 main (int argc
, char **argv
)
39 /* close_stdin currently relies on ftell, but mingw ftell is
40 unreliable on text mode input. */
41 set_binary_mode (0, O_BINARY
);
47 ignore_value (fread (buf
, 1, 6, stdin
));