9 lines
144 B
C
Raw Normal View History

2016-10-30 18:24:19 +01:00
#include <stdio.h>
extern int own_auto_export_function(int i);
2024-04-14 22:45:38 +02:00
void hello2(void)
2016-10-30 18:24:19 +01:00
{
printf("hello exec:%i", own_auto_export_function(41));
}