OpenSolaris_b135/lib/libsqlite/src/config.h

/*
 * Copyright 2004 Sun Microsystems, Inc.  All rights reserved.
 * Use is subject to license terms.
 */

#ifndef	SQLITE_CONFIG_H
#define	SQLITE_CONFIG_H

#pragma ident	"%Z%%M%	%I%	%E% SMI"

#include <sys/types.h>

#ifdef	__cplusplus
extern "C" {
#endif

#ifdef _LP64
#define	SQLITE_PTR_SZ	8
#else
#define	SQLITE_PTR_SZ	4
#endif

#ifdef	__cplusplus
}
#endif

#endif	/* SQLITE_CONFIG_H */