include files in the correct order

SVN revision: 33633
This commit is contained in:
Sebastian Dransfeld 2008-01-27 13:17:22 +00:00
parent 07a6398561
commit d610a1bd9a
4 changed files with 7 additions and 8 deletions

View File

@ -1,7 +1,7 @@
#include <math.h>
#include "Eet.h"
#include "Eet_private.h"
#include "Eet.h"
/*
* routines for doing data -> struct and struct -> data conversion

View File

@ -1,5 +1,5 @@
#include "Eet.h"
#include "Eet_private.h"
#include "Eet.h"
/*---*/

View File

@ -2,15 +2,14 @@
* vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2
*/
#include <config.h>
#include "Eet_private.h"
#include "Eet.h"
#include <sys/types.h>
#ifdef HAVE_SYS_MMAN_H
# include <sys/mman.h>
#endif
#include "Eet.h"
#include "Eet_private.h"
#ifdef HAVE_REALPATH
#undef HAVE_REALPATH
#endif

View File

@ -1,11 +1,11 @@
#include "Eet.h"
#include "Eet_private.h"
#include "Eet.h"
FILE *
_eet_memfile_read_open(const void *data, size_t size)
{
#ifdef HAVE_FMEMOPEN
return (FILE *)fmemopen((void*)data, size, "rb");
return fmemopen((void*)data, size, "rb");
#else
FILE *f;