1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-10 01:02:56 +03:00

Convert a K&R style function to ANSI style. Ticket #2548. (CVS 4487)

FossilOrigin-Name: e1b2e7c24ce0f838687a503dc98188a0e67c79de
This commit is contained in:
drh
2007-10-12 19:35:48 +00:00
parent 64f31519b7
commit 7d97efbe57
3 changed files with 9 additions and 9 deletions

View File

@@ -14,7 +14,7 @@
** other files are for internal use by SQLite and should not be
** accessed by users of the library.
**
** $Id: main.c,v 1.406 2007/10/03 21:10:58 drh Exp $
** $Id: main.c,v 1.407 2007/10/12 19:35:49 drh Exp $
*/
#include "sqliteInt.h"
#include <ctype.h>
@@ -1272,7 +1272,7 @@ int sqlite3_collation_needed16(
** This function is now an anachronism. It used to be used to recover from a
** malloc() failure, but SQLite now does this automatically.
*/
int sqlite3_global_recover(){
int sqlite3_global_recover(void){
return SQLITE_OK;
}
#endif