summaryrefslogtreecommitdiff
path: root/userspace/nonl.c
diff options
context:
space:
mode:
authorMiguel <m.i@gmx.at>2018-09-20 02:02:28 +0200
committerMiguel <m.i@gmx.at>2018-09-20 02:02:28 +0200
commit631fdbefc89a6202c5b8e2bf0e15a6ca7df809ef (patch)
treed0cd13fcb6590c6d3bf88193ca344521ee3e3e78 /userspace/nonl.c
parent1e08b64b43bf9c50b644da3f76d5a8bcc73f62da (diff)
newlib and pipes
Diffstat (limited to 'userspace/nonl.c')
-rw-r--r--userspace/nonl.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/userspace/nonl.c b/userspace/nonl.c
new file mode 100644
index 0000000..3940453
--- /dev/null
+++ b/userspace/nonl.c
@@ -0,0 +1,15 @@
+#include <stdio.h>
+#include <stdlib.h>
+
+void atex()
+{
+ printf("atex\n");
+}
+int main()
+{
+ printf("nonextline");
+// fflush(stdout);
+
+// atexit(&atex);
+ return EXIT_SUCCESS;
+}