config.h revision 7c478bd95313f5f23a4c958a745db2134aa03244
/*
* 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 */