Fix: include stdlib.h in compat/string.h
[lttng-tools.git] / tests / regression / ust / ust-dl / libfoo.c
1 #include "libfoo.h"
2 #include "libbar.h"
3
4 #define TRACEPOINT_DEFINE
5 #define TRACEPOINT_PROBE_DYNAMIC_LINKAGE
6 #include "libfoo-tp.h"
7
8 int foo(void)
9 {
10 tracepoint(libfoo, foo);
11 bar();
12 return 1;
13 }
This page took 0.029087 seconds and 4 git commands to generate.