aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/test.c
blob: 059ef0c6121be8006f45c7ce669e526cc1ae219e (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_OUT, EL_OUT_STDERR);
    el_print(ELN, "embedlog works!");
    el_cleanup();
    return 0;
}