blob: 8968b13af999fe5bb09e13fa2a8005b374f99218 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
Add missing includes for implicitly declared functions
https://bugs.gentoo.org/875479
--- a/ping-apollo.c 2025-02-14 00:18:28.905559670 +0400
+++ b/ping-apollo.c 2025-02-14 00:19:59.617012294 +0400
@@ -9,6 +9,8 @@
#include <sys/time.h>
#include <unistd.h>
#include <linux/serial.h>
+#include <stdlib.h>
+#include <string.h>
#define DEFAULT_DEVICE "/dev/ttyS0"
#define MAXCHARS 128
|