wangzhengquan
2020-10-20 95349b79a5a646736c706fe19645181146ee9486
test/test.c
@@ -0,0 +1,13 @@
#include "usg_common.h"
int  test() {
   static int count = 0;
   count++;
   return count;
}
int main() {
   printf("%d\n", test());
   printf("%d\n", test());
}