don't define _POSIX_SOURCE, it breaks things very slightly. if anyone knows the proper fix, go ahead.

SVN revision: 14947
This commit is contained in:
tsauerbeck 2005-05-26 09:46:45 +00:00 committed by tsauerbeck
parent cc37e8166f
commit 638b1c7da7
1 changed files with 4 additions and 3 deletions

View File

@ -1,6 +1,3 @@
/* PATH_MAX requires POSIX source */
#define _POSIX_SOURCE
#include "Eet.h"
#include <stdio.h>
#include <unistd.h>
@ -13,6 +10,10 @@
#include <limits.h>
#include <fnmatch.h>
#ifndef PATH_MAX
#define PATH_MAX 4096
#endif
/* just some sample code on how to use encoder/decoders */
#if 0
#include <Evas.h>