Stimfit @PACKAGE_VERSION@
Loading...
Searching...
No Matches
longdef.h
Go to the documentation of this file.
1#ifndef LONGDEF_H
2#define LONGDEF_H
3
4#include <limits.h>
5
6#if defined (_WIN64)
7 #define AXGLONG int
8#elif ( __WORDSIZE == 64 ) || defined (__APPLE__)
9 #define AXGLONG int
10#else
11 #define AXGLONG long
12#endif
13
14#endif