Whoops, this is unrelated.

This commit is contained in:
Alcaro 2014-02-18 09:00:44 +01:00
parent d2e95c772b
commit d97440224c
2 changed files with 2 additions and 3 deletions

View File

@ -14,7 +14,6 @@
* If not, see <http://www.gnu.org/licenses/>.
*/
#define _GNU_SOURCE
#include <stdlib.h>
#include <string.h>
#include "file_list.h"

View File

@ -48,9 +48,9 @@
//if unaligned memory access is illegal, define NO_UNALIGNED_MEM
#if SIZE_MAX == 0xFFFFFFFF
extern char test[(sizeof(size_t)==4)?1:-1];
extern char double_check_sizeof_size_t[(sizeof(size_t)==4)?1:-1];
#elif SIZE_MAX == 0xFFFFFFFFFFFFFFFF
extern char test[(sizeof(size_t)==8)?1:-1];
extern char double_check_sizeof_size_t[(sizeof(size_t)==8)?1:-1];
#define USE_64BIT
#else
#error your compiler is insane.