Skip to content
Snippets Groups Projects
Commit ea89e809 authored by Stephane Poirier's avatar Stephane Poirier
Browse files

[BitShuffle compress] Linux64 support

parent bcae4021
Branches
Tags
No related merge requests found
......@@ -38,9 +38,14 @@
typedef unsigned short uint16_t;
typedef unsigned int uint32_t;
typedef signed int int32_t;
#ifdef __x86_64__
typedef unsigned long uint64_t;
typedef long int64_t;
#else
typedef unsigned long long uint64_t;
typedef long long int64_t;
#endif
#endif
#include <stdlib.h>
......
......@@ -22,9 +22,14 @@
typedef unsigned short uint16_t;
typedef unsigned int uint32_t;
typedef signed int int32_t;
#ifdef __x86_64__
typedef unsigned long uint64_t;
typedef long int64_t;
#else
typedef unsigned long long uint64_t;
typedef long long int64_t;
#endif
#endif
#include <stdlib.h>
#include "iochain.h"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment