Sign in
chromium
/
external
/
github.com
/
sqlite
/
sqlite.git
/
refs/heads/begin-concurrent
/
.
/
test
/
c
/
malloc1.c
blob: 16d8455894952c38641cf1d620c8a96eb4276e29 [
file
] [
edit
]
#include
"sqlite3.h"
#include
<stdio.h>
int
main
(
void
)
{
void
*
p
=
0
;
#ifdef
SQLITE_OMIT_AUTOINIT
sqlite3_initialize
();
#endif
p
=
sqlite3_malloc
(
32
);
if
(
!
p
)
return
1
;
sqlite3_free
(
p
);
return
0
;
}