blob: 93a33267abb16fde06b9772d379c52a967e80923 [file] [log] [blame]
b.liu047a21c2024-06-07 17:54:41 +08001#include <stdio.h>
2#include <stdlib.h>
3
4#include "mbtk_version.h"
5
6int main(int argc, char *argv[])
7{
8 char buff[2048] = {0};
9
10 mbtk_build_def_get(buff, sizeof(buff));
11
12 printf("%s\n", buff);
13
14 return 0;
15}
16