From a69d18ae1c394c42bda6db3d6dad7fba077d204f Mon Sep 17 00:00:00 2001 From: Nick Hastings Date: Sun, 6 May 2018 10:28:24 -0400 Subject: [PATCH] Fix warning/error on newer Clang versions from abort not being defined. --- public/asm/asm.c | 1 + 1 file changed, 1 insertion(+) diff --git a/public/asm/asm.c b/public/asm/asm.c index d40b6b7f..c87f4a80 100644 --- a/public/asm/asm.c +++ b/public/asm/asm.c @@ -6,6 +6,7 @@ #include #include #include +#include #include "libudis86/udis86.h"