Make gcc --std=c99 happy

We're now more or less C99 compliant
This commit is contained in:
Maarten Bosmans 2011-09-02 14:11:52 +02:00 committed by Colin Guthrie
parent dfd706da71
commit 9133c6c935
5 changed files with 14 additions and 1 deletions

View file

@ -10,6 +10,10 @@
* Version 0.4 Leaky Normalized LMS - pre whitening algorithm
*/
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif
#include <math.h>
#include <string.h>
#include <stdint.h>

View file

@ -37,6 +37,7 @@
#include <pulsecore/source.h>
#include <pulsecore/core-util.h>
#include <pulsecore/log.h>
#include <pulsecore/macro.h>
#include <pulsecore/modargs.h>
#include <pulsecore/dbus-shared.h>
#include <pulsecore/namereg.h>