summaryrefslogtreecommitdiffstats
path: root/src/plibc-test.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/plibc-test.c')
-rw-r--r--src/plibc-test.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/plibc-test.c b/src/plibc-test.c
new file mode 100644
index 0000000..c8f7365
--- /dev/null
+++ b/src/plibc-test.c
@@ -0,0 +1,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;
+}