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 #pragma ident "%Z%%M% %I% %E% SMI" 10 11 #include <sys/types.h> 12 13 #ifdef __cplusplus 14 extern "C" { 15 #endif 16 17 #ifdef _LP64 18 #define SQLITE_PTR_SZ 8 19 #else 20 #define SQLITE_PTR_SZ 4 21 #endif 22 23 #ifdef __cplusplus 24 } 25 #endif 26 27 #endif /* SQLITE_CONFIG_H */ 28