1 /* mksignames.c -- Create and write `signames.h', which contains an array of
4 /* Copyright (C) 1992-2006 Free Software Foundation, Inc.
6 This file is part of GNU Bash, the Bourne Again SHell.
8 Bash is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 2, or (at your option) any later
13 Bash is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 You should have received a copy of the GNU General Public License along
19 with Bash; see the file COPYING. If not, write to the Free Software
20 Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA. */
24 #include <sys/types.h>
28 #if defined (HAVE_STDLIB_H)
31 # include "ansi_stdlib.h"
32 #endif /* HAVE_STDLIB_H */
34 /* Duplicated from signames.c */
39 #define LASTSIG NSIG+2
41 /* Imported from signames.c */
42 extern void initialize_signames ();
43 extern char *signal_names[];
48 write_signames (stream)
53 fprintf (stream, "/* This file was automatically created by %s.\n",
55 fprintf (stream, " Do not edit. Edit support/signames.c instead. */\n\n");
57 "/* A translation list so we can be polite to our users. */\n");
58 #if defined (CROSS_COMPILING)
59 fprintf (stream, "extern char *signal_names[];\n\n");
60 fprintf (stream, "extern void initialize_signames __P((void));\n\n");
62 fprintf (stream, "char *signal_names[NSIG + 4] = {\n");
64 for (i = 0; i <= LASTSIG; i++)
65 fprintf (stream, " \"%s\",\n", signal_names[i]);
67 fprintf (stream, " (char *)0x0\n");
68 fprintf (stream, "};\n\n");
69 fprintf (stream, "#define initialize_signames()\n\n");
85 stream_name = "stdout";
90 stream_name = argv[1];
91 stream = fopen (stream_name, "w");
95 fprintf (stderr, "Usage: %s [output-file]\n", progname);
101 fprintf (stderr, "%s: %s: cannot open for writing\n",
102 progname, stream_name);
106 #if !defined (CROSS_COMPILING)
107 initialize_signames ();
109 write_signames (stream);