placed a more apropriate fix, following the coding style - closes issue 3

This commit is contained in:
rafael@riseup.net 2009-11-05 17:47:44 +00:00
parent ccedfb1220
commit 794b6d27ef
1 changed files with 12 additions and 1 deletions

View File

@ -31,7 +31,6 @@
/* ============================================================ include files */
#include <limits.h>
#include "AudioSource.h"
#ifdef SUPPORT_JACK_DSP
@ -65,6 +64,18 @@
#error need math.h
#endif
#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#else
#error needs stdlib.h
#endif
#ifdef HAVE_LIMITS_H
#include <limits.h>
#else
#error need limits.h
#endif
#include "Util.h"
#include "Exception.h"
#include "JackDspSource.h"