summaryrefslogtreecommitdiffstats
path: root/makefile-so/clib.c
blob: e624baa5583f12a100b0a089ea69e5ac10e9b43d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

#include "clib.h"

void _init()
{
    printf(" _init()\n");
}

void _fini()
{
    printf(" _fini()\n");
}

void say_hello(FILE *stream)
{
    fprintf(stream,"hello world\n");
}