xref: /illumos-gate/usr/src/lib/libsqlite/src/config.h (revision c5c4113d)
17c478bd9Sstevel@tonic-gate /*
27c478bd9Sstevel@tonic-gate  * Copyright 2004 Sun Microsystems, Inc.  All rights reserved.
37c478bd9Sstevel@tonic-gate  * Use is subject to license terms.
47c478bd9Sstevel@tonic-gate  */
57c478bd9Sstevel@tonic-gate 
67c478bd9Sstevel@tonic-gate #ifndef	SQLITE_CONFIG_H
77c478bd9Sstevel@tonic-gate #define	SQLITE_CONFIG_H
87c478bd9Sstevel@tonic-gate 
97c478bd9Sstevel@tonic-gate #pragma ident	"%Z%%M%	%I%	%E% SMI"
107c478bd9Sstevel@tonic-gate 
117c478bd9Sstevel@tonic-gate #include <sys/types.h>
127c478bd9Sstevel@tonic-gate 
137c478bd9Sstevel@tonic-gate #ifdef	__cplusplus
147c478bd9Sstevel@tonic-gate extern "C" {
157c478bd9Sstevel@tonic-gate #endif
167c478bd9Sstevel@tonic-gate 
177c478bd9Sstevel@tonic-gate #ifdef _LP64
187c478bd9Sstevel@tonic-gate #define	SQLITE_PTR_SZ	8
197c478bd9Sstevel@tonic-gate #else
207c478bd9Sstevel@tonic-gate #define	SQLITE_PTR_SZ	4
217c478bd9Sstevel@tonic-gate #endif
227c478bd9Sstevel@tonic-gate 
237c478bd9Sstevel@tonic-gate #ifdef	__cplusplus
247c478bd9Sstevel@tonic-gate }
257c478bd9Sstevel@tonic-gate #endif
267c478bd9Sstevel@tonic-gate 
277c478bd9Sstevel@tonic-gate #endif	/* SQLITE_CONFIG_H */
28