12 lines
187 B
C
12 lines
187 B
C
|
#include <bits/wordsize.h>
|
||
|
|
||
|
#if __WORDSIZE == 32
|
||
|
#include "gdal/cpl_config-32.h"
|
||
|
#else
|
||
|
#if __WORDSIZE == 64
|
||
|
#include "gdal/cpl_config-64.h"
|
||
|
#else
|
||
|
#error "Unknown word size"
|
||
|
#endif
|
||
|
#endif
|