Mercurial > hg > octave-nkf > gnulib-hg
annotate modules/xfreopen @ 14675:d214c42cc3fe
exit: drop remaining clients
Anyone using EXIT_FAILURE needs to depend on stdlib, now that
the exit module is gone.
* modules/argmatch (Depends-on): Replace exit with stdlib.
* modules/copy-file (Depends-on): Likewise.
* modules/execute (Depends-on): Likewise.
* modules/exitfail (Depends-on): Likewise.
* modules/obstack (Depends-on): Likewise.
* modules/pagealign_alloc (Depends-on): Likewise.
* modules/pipe-filter-gi (Depends-on): Likewise.
* modules/pipe-filter-ii (Depends-on): Likewise.
* modules/savewd (Depends-on): Likewise.
* modules/spawn-pipe (Depends-on): Likewise.
* modules/wait-process (Depends-on): Likewise.
* modules/xsetenv (Depends-on): Likewise.
* modules/chdir-long (Depends-on): Add stdlib, for EXIT_FAILURE.
* modules/git-merge-changelog (Depends-on): Likewise.
* modules/long-options (Depends-on): Likewise.
* modules/pt_chown (Depends-on): Likewise.
* modules/sysexits (Depends-on): Likewise.
Signed-off-by: Eric Blake <eblake@redhat.com>
author | Eric Blake <eblake@redhat.com> |
---|---|
date | Mon, 02 May 2011 11:59:00 -0600 |
parents | a5b7df5da800 |
children | 7d08359f2d59 |
rev | line source |
---|---|
12321
a5b7df5da800
xfreopen: new module, from coreutils
Jim Meyering <meyering@redhat.com>
parents:
diff
changeset
|
1 Description: |
a5b7df5da800
xfreopen: new module, from coreutils
Jim Meyering <meyering@redhat.com>
parents:
diff
changeset
|
2 a wrapper for frepoen |
a5b7df5da800
xfreopen: new module, from coreutils
Jim Meyering <meyering@redhat.com>
parents:
diff
changeset
|
3 |
a5b7df5da800
xfreopen: new module, from coreutils
Jim Meyering <meyering@redhat.com>
parents:
diff
changeset
|
4 Files: |
a5b7df5da800
xfreopen: new module, from coreutils
Jim Meyering <meyering@redhat.com>
parents:
diff
changeset
|
5 lib/xfreopen.c |
a5b7df5da800
xfreopen: new module, from coreutils
Jim Meyering <meyering@redhat.com>
parents:
diff
changeset
|
6 lib/xfreopen.h |
a5b7df5da800
xfreopen: new module, from coreutils
Jim Meyering <meyering@redhat.com>
parents:
diff
changeset
|
7 |
a5b7df5da800
xfreopen: new module, from coreutils
Jim Meyering <meyering@redhat.com>
parents:
diff
changeset
|
8 Depends-on: |
a5b7df5da800
xfreopen: new module, from coreutils
Jim Meyering <meyering@redhat.com>
parents:
diff
changeset
|
9 error |
a5b7df5da800
xfreopen: new module, from coreutils
Jim Meyering <meyering@redhat.com>
parents:
diff
changeset
|
10 exitfail |
a5b7df5da800
xfreopen: new module, from coreutils
Jim Meyering <meyering@redhat.com>
parents:
diff
changeset
|
11 freopen-safer |
a5b7df5da800
xfreopen: new module, from coreutils
Jim Meyering <meyering@redhat.com>
parents:
diff
changeset
|
12 quote |
a5b7df5da800
xfreopen: new module, from coreutils
Jim Meyering <meyering@redhat.com>
parents:
diff
changeset
|
13 |
a5b7df5da800
xfreopen: new module, from coreutils
Jim Meyering <meyering@redhat.com>
parents:
diff
changeset
|
14 configure.ac: |
a5b7df5da800
xfreopen: new module, from coreutils
Jim Meyering <meyering@redhat.com>
parents:
diff
changeset
|
15 |
a5b7df5da800
xfreopen: new module, from coreutils
Jim Meyering <meyering@redhat.com>
parents:
diff
changeset
|
16 Makefile.am: |
a5b7df5da800
xfreopen: new module, from coreutils
Jim Meyering <meyering@redhat.com>
parents:
diff
changeset
|
17 lib_SOURCES += xfreopen.c xfreopen.h |
a5b7df5da800
xfreopen: new module, from coreutils
Jim Meyering <meyering@redhat.com>
parents:
diff
changeset
|
18 |
a5b7df5da800
xfreopen: new module, from coreutils
Jim Meyering <meyering@redhat.com>
parents:
diff
changeset
|
19 Include: |
a5b7df5da800
xfreopen: new module, from coreutils
Jim Meyering <meyering@redhat.com>
parents:
diff
changeset
|
20 "xfreopen.h" |
a5b7df5da800
xfreopen: new module, from coreutils
Jim Meyering <meyering@redhat.com>
parents:
diff
changeset
|
21 |
a5b7df5da800
xfreopen: new module, from coreutils
Jim Meyering <meyering@redhat.com>
parents:
diff
changeset
|
22 License: |
a5b7df5da800
xfreopen: new module, from coreutils
Jim Meyering <meyering@redhat.com>
parents:
diff
changeset
|
23 GPL |
a5b7df5da800
xfreopen: new module, from coreutils
Jim Meyering <meyering@redhat.com>
parents:
diff
changeset
|
24 |
a5b7df5da800
xfreopen: new module, from coreutils
Jim Meyering <meyering@redhat.com>
parents:
diff
changeset
|
25 Maintainer: |
a5b7df5da800
xfreopen: new module, from coreutils
Jim Meyering <meyering@redhat.com>
parents:
diff
changeset
|
26 Jim Meyering |