Fix endian.h inclusion.

This commit is contained in:
Romain Tartiere 2010-06-26 11:56:57 +00:00
parent 9c9d270b7e
commit ebeaf9ad35

View file

@ -27,10 +27,18 @@
*/
#include "config.h"
#if defined(HAVE_SYS_ENDIAN_H)
# include <sys/endian.h>
#endif
#if defined(HAVE_ENDIAN_H)
# include <endian.h>
#endif
#include <stdlib.h>
#include <string.h>
#include <stdint.h>
#include <endian.h>
#include <freefare.h>