summaryrefslogtreecommitdiff
path: root/other/wrez/lookup-example/shared-library-use.c
blob: f6f30b66f91c9a8ff461a0d7837c15787fc7b36c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

#include <stdio.h>
#include "shared-library.h"


int
main (int argc, char *argv[])
{
	void *	cow;

	printf ("before calling func\n");
	cow = mysharedfunc (2000);
	printf ("after calling func\n");
}