hello2.c 140 B

12345678
  1. #include <stdio.h>
  2. extern int own_auto_export_function(int i);
  3. void hello2()
  4. {
  5. printf("hello exec:%i", own_auto_export_function(41));
  6. }