summaryrefslogtreecommitdiff
path: root/x11-plugins/astime/files/astime-2.8-fix-implicit-function-decl.patch
blob: 2db4db84268535493b365c932ae3b0fd78c22f2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
File uses implicit declaration of a library function. This is not allow with clang16s default settings.

Bug: https://bugs.gentoo.org/882175
Patch has been sent to upstream via mail

#  Pascal Jäger <pascal.jaeger@leimstift.de> (2023-09-18)

--- a/astime_x.c
+++ b/astime_x.c
@@ -11,6 +11,7 @@
 
 #include <stdio.h>
 #include <stdlib.h>
+#include <string.h>
 #include <math.h>
 #include <time.h>