File: implicit-function-declaration

package info (click to toggle)
compiz-plugins-main 2%3A0.8.18-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 10,196 kB
  • sloc: ansic: 27,670; sh: 4,744; cpp: 1,420; makefile: 691
file content (104 lines) | stat: -rw-r--r-- 2,432 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
commit 568f653a17722062666917b42444d97bb2a76fab
Author: Jaroslav Škarvada <jskarvad@redhat.com>
Date:   Mon Feb 5 18:41:33 2024 +0100

    Fixed build with gcc-14
    
    Signed-off-by: Jaroslav Škarvada <jskarvad@redhat.com>

diff --git a/src/mag/mag.c b/src/mag/mag.c
index f3c8fc3..6aac3a7 100644
--- a/src/mag/mag.c
+++ b/src/mag/mag.c
@@ -20,6 +20,7 @@
  *
  */
 
+#include <stdlib.h>
 #include <math.h>
 #include <string.h>
 
diff --git a/src/mousepoll/mousepoll.c b/src/mousepoll/mousepoll.c
index d009ed2..eb513e1 100644
--- a/src/mousepoll/mousepoll.c
+++ b/src/mousepoll/mousepoll.c
@@ -20,6 +20,7 @@
  *
  */
 
+#include <stdlib.h>
 #include <compiz-core.h>
 
 #include "compiz-mousepoll.h"
diff --git a/src/opacify/opacify.c b/src/opacify/opacify.c
index a4fb86c..3b96208 100644
--- a/src/opacify/opacify.c
+++ b/src/opacify/opacify.c
@@ -21,6 +21,7 @@
  *
  */
 
+#include <stdlib.h>
 #include <compiz-core.h>
 #include "opacify_options.h"
 
diff --git a/src/scaleaddon/scaleaddon.c b/src/scaleaddon/scaleaddon.c
index 8029fa4..d97fe11 100644
--- a/src/scaleaddon/scaleaddon.c
+++ b/src/scaleaddon/scaleaddon.c
@@ -24,6 +24,7 @@
  *
  */
 
+#include <stdlib.h>
 #include <math.h>
 #include <string.h>
 #include <X11/Xatom.h>
diff --git a/src/session/session.c b/src/session/session.c
index 7d1d6e9..bac2c0a 100644
--- a/src/session/session.c
+++ b/src/session/session.c
@@ -29,6 +29,7 @@
 
 #include <compiz-core.h>
 
+#include <stdlib.h>
 #include <string.h>
 #include <errno.h>
 #include <pwd.h>
diff --git a/src/vpswitch/vpswitch.c b/src/vpswitch/vpswitch.c
index 92faf48..3411671 100644
--- a/src/vpswitch/vpswitch.c
+++ b/src/vpswitch/vpswitch.c
@@ -27,6 +27,7 @@
  */
 
 #include <compiz-core.h>
+#include <stdlib.h>
 #include <string.h>
 #include <X11/keysymdef.h>
 #include "vpswitch_options.h"
diff --git a/src/winrules/winrules.c b/src/winrules/winrules.c
index d64623e..8a47b0a 100644
--- a/src/winrules/winrules.c
+++ b/src/winrules/winrules.c
@@ -21,6 +21,7 @@
 
 #include <compiz-core.h>
 
+#include <stdlib.h>
 #include <X11/Xatom.h>
 
 #define WINRULES_SCREEN_OPTION_SKIPTASKBAR_MATCH  0
diff --git a/src/workarounds/workarounds.c b/src/workarounds/workarounds.c
index 125c072..af92b26 100644
--- a/src/workarounds/workarounds.c
+++ b/src/workarounds/workarounds.c
@@ -20,6 +20,7 @@
  * This plug-in for Marco-like workarounds.
  */
 
+#include <stdlib.h>
 #include <string.h>
 #include <limits.h>