From 08ae0e4887d9aa2ff37e4fc4d56ca514c7f6bd85 Mon Sep 17 00:00:00 2001
From: Daniel Friesel <derf@finalrewind.org>
Date: Sat, 8 May 2021 13:39:02 +0200
Subject: [PATCH] getopt.c: Add missing string.h include (#530)

---
 src/getopt.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/getopt.c b/src/getopt.c
index d212b3a..eaae3f7 100644
--- a/src/getopt.c
+++ b/src/getopt.c
@@ -36,6 +36,7 @@
 #endif
 
 #include <stdio.h>
+#include <string.h>
 
 /* Comment out all this code if we are using the GNU C Library, and are not
    actually compiling the library itself.  This code is part of the GNU C
-- 
GitLab