summaryrefslogtreecommitdiffstats
path: root/src/plibc-test.c
blob: 4cf964bf766eb3cef302f725be1c4f028562f634 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * This file is part of MXE. See LICENSE.md for licensing information.
 *
 */

#include "plibc.h"

int main(int argc, char *argv[])
{
    (void)argc;
    (void)argv;

    plibc_init("MXE", "MXE");
    PRINTF("%s Test", "PlibC");
    plibc_shutdown();

    return 0;
}