blob: aaccb575e0a957a5b86f62c359983ce2aec598dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
temp.c:4:1: warning: incompatible implicit declaration of built-in function ‘exit’
--- Makefile.in
+++ Makefile.in
@@ -269,6 +269,7 @@
#
config.h:
echo '#include <stdio.h>' >temp.c
+ echo '#include <stdlib.h>' >>temp.c
echo 'int main(){printf(' >>temp.c
echo '"#define SQLITE_PTR_SZ %d",sizeof(char*));' >>temp.c
echo 'exit(0);}' >>temp.c
|