aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/test.c
blob: 55828aa0e12f75988adcdbae48e1c1002e8d2ea0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* ==========================================================================
    Licensed under BSD 2clause license See LICENSE file for more information
    Author: Michał Łyszczek <michal.lyszczek@bofc.pl>
   ========================================================================== */

/* this is very minimum program, just to check if embedlog is installed
 * on the system or not
 */

#include <embedlog.h>
#include <stdio.h>

int main(void)
{
    el_init();
    el_option(EL_OPT_OUTPUT, EL_OPT_OUT_STDERR);
    el_print(ELN, "embedlog works!");
    el_cleanup();
    return 0;
}