summaryrefslogtreecommitdiffstats
path: root/src/plibc-test.c
blob: c8f7365b98b469e8fd2eeaa1d2737143b5623c60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * This file is part of MXE.
 * See index.html for further 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;
}