placed a more apropriate fix, following the coding style - closes issue 3
This commit is contained in:
parent
ccedfb1220
commit
794b6d27ef
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue