16 lines
212 B
C
16 lines
212 B
C
|
#include "base.h"
|
||
|
|
||
|
#include "base.c"
|
||
|
|
||
|
#include <stdio.h>
|
||
|
EXPORT_SYMBOL void
|
||
|
plugin_func(void){
|
||
|
printf("provided by plugin: {\n");
|
||
|
printf(" ");
|
||
|
base_func();
|
||
|
printf(" ");
|
||
|
base_func();
|
||
|
printf("}\n");
|
||
|
}
|
||
|
|