2016-01-21 23:42:40 +01:00

20 lines
415 B
Plaintext

$NetBSD: patch-ak,v 1.3 2015/07/02 18:47:57 khorben Exp $
fix build on solaris 9
--- hacks/m6502.c.orig 2015-03-02 03:59:21.000000000 +0000
+++ hacks/m6502.c
@@ -12,7 +12,12 @@
* Created: 07-May-2007
*/
+#include <config.h>
+#if defined(HAVE_STDINT_H)
+#include <stdint.h>
+#elif defined(HAVE_INTTYPES_H)
#include <inttypes.h>
+#endif
#include <string.h>
#include "screenhack.h"
#include "analogtv.h"