summaryrefslogtreecommitdiff
path: root/include/posix/driver/stdout.h
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2018-07-17 09:57:10 +0200
committerDaniel Friesel <derf@finalrewind.org>2018-07-17 09:57:10 +0200
commit3fddb519f01ca53f1fd6f5c24e154912b25d1138 (patch)
tree62efb5ea5431f543f0ea899aa809e262e47980ba /include/posix/driver/stdout.h
parent658ca283452c5944c55d9c751868eef6c6f34138 (diff)
Move include/$arch to include/arch/$arch to be consistent with src/ hierarchy
Diffstat (limited to 'include/posix/driver/stdout.h')
-rw-r--r--include/posix/driver/stdout.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/include/posix/driver/stdout.h b/include/posix/driver/stdout.h
deleted file mode 100644
index b21ad56..0000000
--- a/include/posix/driver/stdout.h
+++ /dev/null
@@ -1,20 +0,0 @@
-#ifndef STANDARDOUTPUT_H
-#define STANDARDOUTPUT_H
-
-#include "object/outputstream.h"
-
-class StandardOutput : public OutputStream {
- private:
- StandardOutput(const StandardOutput &copy);
-
- public:
- StandardOutput () {}
- void setup() {}
-
- virtual void put(char c) override;
- virtual void flush() override;
-};
-
-extern StandardOutput kout;
-
-#endif