shithub: scc

Download patch

ref: 17189bc8295651f0959354596c39551994061a37
parent: 6903173cd0f863498a40f0e595ce83b881d71edb
author: Roberto E. Vargas Caballero <[email protected]>
date: Fri Sep 17 02:37:32 EDT 2021

libmach: Add missed string.h

Strcmp() was used in findsec() but string.h was not included
generating a function call without prototype.

--- a/src/libmach/findsec.c
+++ b/src/libmach/findsec.c
@@ -1,4 +1,5 @@
 #include <stdio.h>
+#include <string.h>
 
 #include <scc/mach.h>