b.liu | 047a21c | 2024-06-07 17:54:41 +0800 | [diff] [blame] | 1 | #include <stdio.h> |
2 | #include <stdlib.h> | ||||
3 | |||||
4 | #include "mbtk_version.h" | ||||
5 | |||||
6 | int 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 |