summaryrefslogtreecommitdiff
path: root/tests/projects/package/toolchain_muslcc/src/main.c
blob: 6331557e601c7ecbce5006445f171e0e9363d2e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <stdio.h>
#include <stdint.h>
#include <zlib.h>
#include <ogg/ogg.h>
#ifdef HAVE_LIBPLIST
#   include <plist/plist.h>
#endif

int main(int argc, char** argv)
{
    printf("hello world!\n");
    inflate(0, 0);
    ogg_sync_init(0);
#ifdef HAVE_LIBPLIST
    plist_new_dict();
#endif
    return 0;
}