summaryrefslogtreecommitdiff
path: root/laden/output-none.c
diff options
context:
space:
mode:
authormarcus <marcus>2003-07-26 17:26:09 +0000
committermarcus <marcus>2003-07-26 17:26:09 +0000
commit35c35373d1f6ee353b67fc2e596b01d9b49f4be8 (patch)
treed425cc345ca97b36996e91345fdc4b2bdbb223fa /laden/output-none.c
Initial check-in.
Diffstat (limited to 'laden/output-none.c')
-rw-r--r--laden/output-none.c29
1 files changed, 29 insertions, 0 deletions
diff --git a/laden/output-none.c b/laden/output-none.c
new file mode 100644
index 0000000..c8b2142
--- /dev/null
+++ b/laden/output-none.c
@@ -0,0 +1,29 @@
+/* output-non.c - A dummy output driver.
+ Copyright (C) 2003 Free Software Foundation, Inc.
+ Written by Marcus Brinkmann.
+
+ This file is part of the GNU Hurd.
+
+ The GNU Hurd is free software; you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation; either version 2, or (at
+ your option) any later version.
+
+ The GNU Hurd is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. */
+
+#include "laden.h"
+
+struct output_driver no_output =
+ {
+ "none",
+ 0, /* init */
+ 0, /* deinit */
+ 0 /* putchar */
+ };