Include string.h (not strings.h) to avoid warning about implicit declaration of strcmp
This commit is contained in:
parent
c73e0a2079
commit
46d81c12fe
|
|
@ -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"
|
||||||
|
|
@ -98,4 +98,4 @@ int main(int argc, char **argv) {
|
||||||
fm_mpx_close();
|
fm_mpx_close();
|
||||||
|
|
||||||
return EXIT_SUCCESS;
|
return EXIT_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue