~ubuntu-branches/ubuntu/precise/sqlite3/precise-updates

« back to all changes in this revision

Viewing changes to src/os.h

  • Committer: Bazaar Package Importer
  • Author(s): Laszlo Boszormenyi (GCS)
  • Date: 2009-12-11 14:34:09 UTC
  • mfrom: (9.1.7 squeeze)
  • Revision ID: james.westby@ubuntu.com-20091211143409-o29fahwmcmyd0vq1
Tags: 3.6.21-2
Run autoreconf to prevent FTBFS with new libtool (closes: #560660).

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
**
17
17
** This header file is #include-ed by sqliteInt.h and thus ends up
18
18
** being included by every source file.
19
 
**
20
 
** $Id: os.h,v 1.108 2009/02/05 16:31:46 drh Exp $
21
19
*/
22
20
#ifndef _SQLITE_OS_H_
23
21
#define _SQLITE_OS_H_
224
222
#define SHARED_FIRST      (PENDING_BYTE+2)
225
223
#define SHARED_SIZE       510
226
224
 
 
225
/*
 
226
** Wrapper around OS specific sqlite3_os_init() function.
 
227
*/
 
228
int sqlite3OsInit(void);
 
229
 
227
230
/* 
228
231
** Functions for accessing sqlite3_file methods 
229
232
*/