9 lines
120 B
C
9 lines
120 B
C
|
#include "a_lib.h"
|
||
|
|
||
|
#include <stdio.h>
|
||
|
|
||
|
int function (void){
|
||
|
printf("executing the function...\n");
|
||
|
return 1;
|
||
|
}
|