pkgsrc/audio/goom/patches/patch-ab
tv 4ea12bfa08 Only include <inttypes.h> if configure said it exists. Add <stdlib.h> to
one place where uintptr_t is needed, for Interix.
2005-10-31 15:33:19 +00:00

16 lines
341 B
Text

$NetBSD: patch-ab,v 1.1 2005/10/31 15:33:19 tv Exp $
--- src/filters.c.orig 2005-02-07 08:46:41.000000000 -0500
+++ src/filters.c
@@ -18,7 +18,11 @@
#include <stdlib.h>
#include <math.h>
#include <stdio.h>
+#include <stdlib.h>
+
+#if HAVE_INTTYPES_H
#include <inttypes.h>
+#endif
#include "goom_filters.h"
#include "goom_graphic.h"