gdal/cpl-config.h
desert-sailor 87fed29c83 Update to 3.7.2
(cherry picked from commit 01f4bf9aa8e0535b643f5e0638be174d5dc769db)
2025-04-28 21:20:49 +08:00

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