Include string.h (not strings.h) to avoid warning about implicit declaration of strcmp

This commit is contained in:
Eric Limpens 2014-06-22 21:16:11 +02:00
parent c73e0a2079
commit 46d81c12fe
1 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@
#include <stdlib.h> #include <stdlib.h>
#include <math.h> #include <math.h>
#include <sndfile.h> #include <sndfile.h>
#include <strings.h> #include <string.h>
#include "rds.h" #include "rds.h"
#include "fm_mpx.h" #include "fm_mpx.h"