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_MISC_H
77c478bd9Sstevel@tonic-gate #define	_SQLITE_MISC_H
87c478bd9Sstevel@tonic-gate 
97c478bd9Sstevel@tonic-gate #pragma ident	"%Z%%M%	%I%	%E% SMI"
107c478bd9Sstevel@tonic-gate 
117c478bd9Sstevel@tonic-gate #ifdef	__cplusplus
127c478bd9Sstevel@tonic-gate extern "C" {
137c478bd9Sstevel@tonic-gate #endif
147c478bd9Sstevel@tonic-gate 
157c478bd9Sstevel@tonic-gate /*
167c478bd9Sstevel@tonic-gate  * defines an extra temp directory to try first
177c478bd9Sstevel@tonic-gate  */
187c478bd9Sstevel@tonic-gate extern const char *sqlite_temp_directory;
197c478bd9Sstevel@tonic-gate 
207c478bd9Sstevel@tonic-gate #ifdef	__cplusplus
217c478bd9Sstevel@tonic-gate }
227c478bd9Sstevel@tonic-gate #endif
237c478bd9Sstevel@tonic-gate 
247c478bd9Sstevel@tonic-gate #endif	/* _SQLITE_MISC_H */
25