]> Joshua Wise's Git repositories - netwatch.git/blobdiff - lib/console.c
More ICH2-specific code diked out.
[netwatch.git] / lib / console.c
index 27880baabbafce3a3d0edb1bcee9d8e6a6c98c2a..db95d7dcbdc8c12f13b87b7cd57a7143e2f824aa 100644 (file)
@@ -1,12 +1,15 @@
-/** @file console.c 
- *  @brief A console driver.
+/* console.c 
+ * A console driver.
+ *
+ * Copyright (c) 2008 Joshua Wise.  All rights reserved.
+ * This program is free software; you can redistribute and/or modify it under
+ * the terms found in the file LICENSE in the root of this source tree.
  *
- *  @author Joshua Wise (jwise) <joshua@joshuawise.com>
- *  @bug None known
  */
 
 #include <console.h>
 #include "console-ext.h"
+#include <minilib.h>
 #include <io.h>
 
 #define POS_IS_VALID(row, col) ((row) >= 0 && (row) < CONSOLE_HEIGHT && (col) >= 0 && (col) < CONSOLE_WIDTH)
This page took 0.021308 seconds and 4 git commands to generate.