Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix build error from redundant typedefs in test_mem.c introduced by 75b8ccc0a8. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
3ae72142677075194074f27b19d0f964 |
User & Date: | peterreid 2013-06-01 22:58:07.980 |
Context
2013-06-01
| ||
23:35 | Add tests for sqlite4_num_to_int64. check-in: 11fd3e7ec4 user: peterreid tags: trunk | |
22:58 | Fix build error from redundant typedefs in test_mem.c introduced by 75b8ccc0a8. check-in: 3ae7214267 user: peterreid tags: trunk | |
20:34 | Use decimal arithmetic in the sum(), total() and avg() functions. check-in: 23ded9b859 user: dan tags: trunk | |
Changes
Changes to test/test_mem.c.
︙ | ︙ | |||
14 15 16 17 18 19 20 | #include <string.h> #include "sqliteInt.h" #include "testInt.h" #define MIN(x,y) ((x)<(y) ? (x) : (y)) | < < < < < | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | #include <string.h> #include "sqliteInt.h" #include "testInt.h" #define MIN(x,y) ((x)<(y) ? (x) : (y)) #if defined(__GLIBC__) extern int backtrace(void**,int); extern void backtrace_symbols_fd(void*const*,int,int); # define TM_BACKTRACE 12 #else # define backtrace(A,B) 1 # define backtrace_symbols_fd(A,B,C) |
︙ | ︙ |