~ubuntu-branches/ubuntu/utopic/coreutils/utopic-proposed

« back to all changes in this revision

Viewing changes to gnulib-tests/test-fputc.c

  • Committer: Colin Watson
  • Date: 2013-10-30 15:48:33 UTC
  • mfrom: (8.3.5 sid)
  • Revision ID: cjwatson@canonical.com-20131030154833-xdt6e1yfffqom1c4
merge from Debian 8.21-1

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* Test of fputc() function.
2
 
   Copyright (C) 2011-2012 Free Software Foundation, Inc.
 
2
   Copyright (C) 2011-2013 Free Software Foundation, Inc.
3
3
 
4
4
   This program is free software; you can redistribute it and/or modify
5
5
   it under the terms of the GNU General Public License as published by
70
70
      }
71
71
  }
72
72
  {
73
 
    FILE *fp = fdopen (99, "w");
 
73
    FILE *fp;
 
74
    close (99);
 
75
    fp = fdopen (99, "w");
74
76
    if (fp != NULL)
75
77
      {
76
78
        setvbuf (fp, NULL, _IONBF, 0);