File: add_explicit_cstdlib_dependencies

package info (click to toggle)
swish%2B%2B 6.1.5-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 2,904 kB
  • sloc: ansic: 11,936; lisp: 804; sh: 629; perl: 366; makefile: 42
file content (110 lines) | stat: -rw-r--r-- 1,832 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
--- a/Group.c
+++ b/Group.c
@@ -20,6 +20,7 @@
 */
 
 // standard
+#include <cstdlib>
 #include <sys/types.h>                          /* needed by FreeBSD systems */
 #include <grp.h>                                /* for getgrnam(3) */
 
--- a/IncludeMeta.c
+++ b/IncludeMeta.c
@@ -20,6 +20,7 @@
 */
 
 // standard
+#include <cstdlib>
 #include <cstring>
 
 // local
--- a/User.c
+++ b/User.c
@@ -20,6 +20,7 @@
 */
 
 // standard
+#include <cstdlib>
 #include <pwd.h>                                /* for getpwnam(3) */
 
 // local
--- a/WordThreshold.c
+++ b/WordThreshold.c
@@ -20,6 +20,7 @@
 */
 
 // standard
+#include <cstdlib>
 #include <sys/types.h>                          /* needed by FreeBSD systems */
 #include <unistd.h>                             /* for geteuid(2) */
 
--- a/conf_bool.c
+++ b/conf_bool.c
@@ -20,6 +20,7 @@
 */
 
 // standard
+#include <cstdlib>
 #include <iostream>
 
 // local
--- a/conf_enum.c
+++ b/conf_enum.c
@@ -20,6 +20,7 @@
 */
 
 // standard
+#include <cstdlib>
 #include <iostream>
 
 // local
--- a/conf_percent.c
+++ b/conf_percent.c
@@ -20,6 +20,7 @@
 */
 
 // standard
+#include <cstdlib>
 #include <cstring>
 
 // local
--- a/conf_string.c
+++ b/conf_string.c
@@ -20,6 +20,7 @@
 */
 
 // standard
+#include <cstdlib>
 #include <cstring>
 #include <iostream>
 
--- a/conf_var.c
+++ b/conf_var.c
@@ -21,6 +21,7 @@
 
 // standard
 #include <cctype>
+#include <cstdlib>
 #include <cstring>
 #include <iostream>
 
--- a/mod/html/mod_html.c
+++ b/mod/html/mod_html.c
@@ -23,6 +23,7 @@
 
 // standard
 #include <cctype>
+#include <cstdlib>
 #include <cstring>
 #include <utility>                              /* for pair<> */
 #include <vector>
--- a/stop_words.c
+++ b/stop_words.c
@@ -21,6 +21,7 @@
 
 // standard
 #include <cctype>
+#include <cstdlib>
 
 // local
 #include "config.h"