1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
https://gitlab.com/compiz/compiz-plugins-extra/-/merge_requests/51
commit 5f653e44d6d8d7a8661c24ee1ceb60306fb9d82f
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date: Sun Jun 16 17:13:44 2024 +0200
More missing stdlib.h inclusion
Fixes #36
diff --git a/src/bell/bell.c b/src/bell/bell.c
index ec92269..46ed6be 100644
--- a/src/bell/bell.c
+++ b/src/bell/bell.c
@@ -24,6 +24,7 @@
**/
#include <string.h>
+#include <stdlib.h>
#include <canberra.h>
#include <xsettings-client.h>
|