mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 06:44:16 +01:00
63b1969fbb
git-svn-id: file:///svn/toku/tokudb@43179 c7de825b-a66e-492c-adef-691d508d4ae1
8 lines
93 B
C
8 lines
93 B
C
#include <stdlib.h>
|
|
|
|
static void *vp;
|
|
|
|
int main(void) {
|
|
vp = malloc(42);
|
|
return 0;
|
|
}
|