1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-10-31 18:11:01 +03:00

Separate the ifdefs for INTPTR_TYPE and UINTPTR_TYPE in sqliteInt.h. (CVS 1875)

FossilOrigin-Name: 4e7953c13fd2cb32e5c97737c4b2f99b1b1edc9b
This commit is contained in:
drh
2004-08-04 14:29:22 +00:00
parent db2d9a0bbb
commit d2f0a72331
3 changed files with 14 additions and 9 deletions

View File

@@ -11,7 +11,7 @@
*************************************************************************
** Internal interface definitions for SQLite.
**
** @(#) $Id: sqliteInt.h,v 1.312 2004/07/26 12:24:23 drh Exp $
** @(#) $Id: sqliteInt.h,v 1.313 2004/08/04 14:29:23 drh Exp $
*/
#ifndef _SQLITEINT_H_
#define _SQLITEINT_H_
@@ -114,9 +114,14 @@
#ifndef INTPTR_TYPE
# if SQLITE_PTR_SZ==4
# define INTPTR_TYPE int
# define UINTPTR_TYPE unsigned int
# else
# define INTPTR_TYPE sqlite_int64
# endif
#endif
#ifndef UINTPTR_TYPE
# if SQLITE_PTR_SZ==4
# define UINTPTR_TYPE unsigned int
# else
# define UINTPTR_TYPE sqlite_uint64
# endif
#endif