Fix some includes.

This commit is contained in:
Themaister 2011-12-02 21:16:51 +01:00
parent e412ecdefe
commit 6538312d86
2 changed files with 5 additions and 5 deletions

View File

@ -22,11 +22,11 @@
#include <stdio.h> #include <stdio.h>
#include <ctype.h> #include <ctype.h>
#include <errno.h> #include <errno.h>
#include "strl.h" #include "../strl.h"
#ifndef _WIN32 #if !defined(_WIN32) && !defined(__CELLOS_LV2__)
#include <sys/param.h> // MAXPATHLEN #include <sys/param.h> // MAXPATHLEN
#else #elif defined(_WIN32)
#define WIN32_LEAN_AND_MEAN #define WIN32_LEAN_AND_MEAN
#include <windows.h> #include <windows.h>
#endif #endif

View File

@ -42,9 +42,9 @@
#include "audio/hermite.h" #include "audio/hermite.h"
#ifndef _WIN32 #if !defined(_WIN32) && !defined(__CELLOS_LV2__)
#include <sys/param.h> // MAXPATHLEN #include <sys/param.h> // MAXPATHLEN
#else #elif defined(_WIN32)
#define WIN32_LEAN_AND_MEAN #define WIN32_LEAN_AND_MEAN
#include <windows.h> #include <windows.h>
#endif #endif