1 /* 2 * Copyright 2004 Sun Microsystems, Inc. All rights reserved. 3 * Use is subject to license terms. 4 */ 5 6 #ifndef SQLITE_CONFIG_H 7 #define SQLITE_CONFIG_H 8 9 #include <sys/types.h> 10 11 #ifdef __cplusplus 12 extern "C" { 13 #endif 14 15 #ifdef _LP64 16 #define SQLITE_PTR_SZ 8 17 #else 18 #define SQLITE_PTR_SZ 4 19 #endif 20 21 #ifdef __cplusplus 22 } 23 #endif 24 25 #endif /* SQLITE_CONFIG_H */ 26