e81d96ffc1
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
8 lines
197 B
C++
8 lines
197 B
C++
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <jemalloc/jemalloc.h>
|
|
|
|
int main() {
|
|
printf("%d.%d.%d", JEMALLOC_VERSION_MAJOR, JEMALLOC_VERSION_MINOR, JEMALLOC_VERSION_BUGFIX);
|
|
return 0;
|
|
}
|