From: Arnaud Rebillout <arnaudr@kali.org>
Date: Tue, 14 May 2024 22:13:00 +0700
Subject: Include string.h

To fix error with -Werror=implicit-function-declaration, which is enabled by
default since dpkg version 1.22.6.

Bug-Debian: https://bugs.debian.org/1066597
---
 main.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/main.c b/main.c
index 77eab80..e21de1a 100644
--- a/main.c
+++ b/main.c
@@ -36,6 +36,7 @@
  * The output will go to outfile if specified, stdout otherwise.
  */
 
+#include <string.h>
 #include "snow.h"
 
 
