mirror of
https://github.com/sqlite/sqlite.git
synced 2025-07-29 08:01:23 +03:00
Fix harmless compiler warning in lemon.
FossilOrigin-Name: 2da0eea02d128c37f2fbe764227ac526d3e993284516544adc0a216a035c5676
This commit is contained in:
@ -48,6 +48,7 @@ extern int access(const char *path, int mode);
|
||||
#define MAXRHS 1000
|
||||
#endif
|
||||
|
||||
extern void memory_error();
|
||||
static int showPrecedenceConflict = 0;
|
||||
static char *msort(char*,char**,int(*)(const char*,const char*));
|
||||
|
||||
@ -4919,7 +4920,6 @@ char *SetNew(void){
|
||||
char *s;
|
||||
s = (char*)calloc( size, 1);
|
||||
if( s==0 ){
|
||||
extern void memory_error();
|
||||
memory_error();
|
||||
}
|
||||
return s;
|
||||
|
Reference in New Issue
Block a user