Replace FSF snail mail address with URLs.
[glibc.git] / libio / test-freopen.c
blobf3d82620bc17da7d8c09f45214e1eda36b16218a
1 /* Test for freopen implementation.
2 Copyright (C) 2000 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
19 #include <mcheck.h>
20 #include <stdio.h>
21 #include <stdlib.h>
22 #include <wchar.h>
25 int
26 main (int argc, char *argv[])
28 FILE *fp;
30 mtrace ();
32 if (argc < 2)
33 exit (1);
35 fp = fopen (argv[1], "w");
36 if (fp == NULL)
38 puts ("fopen failed: %m");
39 exit (1);
42 fputs ("Hello world (mb)\n", fp);
44 fp = freopen (argv[1], "a+", fp);
45 if (fp == NULL)
47 puts ("freopen failed: %m");
48 exit (1);
51 fputws (L"Hello world (wc)\n", fp);
53 fclose (fp);
55 return 0;