From 137ace8e878d6a4e1a13ced7d6e06ab71403047e Mon Sep 17 00:00:00 2001 From: carlo-bramini Date: Sun, 5 Nov 2017 17:59:07 +0100 Subject: [PATCH] Add also int64_t for completeness. --- src/utils/fluidsynth_priv.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/utils/fluidsynth_priv.h b/src/utils/fluidsynth_priv.h index 24c69a67..fffa776f 100644 --- a/src/utils/fluidsynth_priv.h +++ b/src/utils/fluidsynth_priv.h @@ -137,6 +137,7 @@ typedef gint16 int16_t; typedef guint16 uint16_t; typedef gint32 int32_t; typedef guint32 uint32_t; +typedef gint64 int64_t; typedef guint64 uint64_t; #endif