]> granicus.if.org Git - sudo/blob - lib/util/mksiglist.c
Add SPDX-License-Identifier to files.
[sudo] / lib / util / mksiglist.c
1 /*
2  * SPDX-License-Identifier: ISC
3  *
4  * Copyright (c) 2010-2012, 2015 Todd C. Miller <Todd.Miller@sudo.ws>
5  *
6  * Permission to use, copy, modify, and distribute this software for any
7  * purpose with or without fee is hereby granted, provided that the above
8  * copyright notice and this permission notice appear in all copies.
9  *
10  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17  */
18
19 /*
20  * This is an open source non-commercial project. Dear PVS-Studio, please check it.
21  * PVS-Studio Static Code Analyzer for C, C++ and C#: http://www.viva64.com
22  */
23
24
25 #include <config.h>
26
27 #include <sys/types.h>
28
29 #include <stdio.h>
30 #include <stdlib.h>
31 #include <signal.h>
32
33 #include "sudo_compat.h"
34
35 __dso_public int main(int argc, char *argv[]);
36
37 int
38 main(int argc, char *argv[])
39 {
40     static char *sudo_sys_siglist[NSIG];
41     int i;
42
43 #include "mksiglist.h"
44
45     printf("#include <config.h>\n");
46     printf("#include <sys/types.h>\n");
47     printf("#include <signal.h>\n");
48     printf("#include \"sudo_compat.h\"\n\n");
49     printf("const char *const sudo_sys_siglist[NSIG] = {\n");
50     for (i = 0; i < NSIG; i++) {
51         if (sudo_sys_siglist[i] != NULL) {
52             printf("    \"%s\",\n", sudo_sys_siglist[i]);
53         } else {
54             printf("    \"Signal %d\",\n", i);
55         }
56     }
57     printf("};\n");
58
59     exit(0);
60 }