Add abi0 conflict tests
[lttng-ust.git] / tests / regression / abi0-conflict / app_noust.c
1 /*
2 * SPDX-License-Identifier: LGPL-2.1-only
3 *
4 * Copyright (C) 2021 Michael Jeanson <mjeanson@efficios.com>
5 */
6
7 #include <stdio.h>
8
9 #include "./libzero.h"
10 #include "./libone.h"
11
12 int main(void)
13 {
14 printf("This application is NOT linked on liblttng-ust.\n");
15
16 #ifdef USE_LIBZERO
17 libzero();
18 #endif
19 #ifdef USE_LIBONE
20 libone();
21 #endif
22
23 return 0;
24 }
This page took 0.028961 seconds and 4 git commands to generate.