summaryrefslogtreecommitdiff
path: root/userspace/err.c
diff options
context:
space:
mode:
Diffstat (limited to 'userspace/err.c')
-rw-r--r--userspace/err.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/userspace/err.c b/userspace/err.c
deleted file mode 100644
index 8e5d819..0000000
--- a/userspace/err.c
+++ /dev/null
@@ -1,9 +0,0 @@
-#include <stdio.h>
-
-int main(int argc, char **argv)
-{
- char buf[]="This is a line written to stderr.\n";
- int l=fwrite(buf,sizeof(char),strlen(buf),stderr); // write stderr;
- printf("Written %i chars to stderr.\n",l);
- return 0;
-}