From 35ed8f32edda9e23741fdb6a9fd0c7ebb7ee8b11 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Sun, 27 Dec 2009 03:51:38 +0000 Subject: following up on bug report #2921689, fixed a bunch of 'implicit declaration of function' warnings, which could cause problems on 64-bit svn path=/trunk/externals/mjlib/; revision=12846 --- n2m.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/n2m.c b/n2m.c index 9379c9f..cb67f93 100644 --- a/n2m.c +++ b/n2m.c @@ -1,11 +1,12 @@ -#ifdef NT +#ifdef _WIN32 #include "stdafx.h" #include -#include #endif #include "m_pd.h" #include #include +#include +#include #include "n2m.h" char* notes_up[12] = {"C", "C#", "D", "D#", "E", "F", "F#", "G", "G#", "A", "A#", "B"}; -- cgit v1.2.1