home *** CD-ROM | disk | FTP | other *** search
/ High Voltage Shareware / high1.zip / high1 / DIR3 / KA9Q212.ZIP / ANSI.C < prev    next >
C/C++ Source or Header  |  1993-07-16  |  456b  |  21 lines

  1. /****************************************************************************
  2. *    $Id: ansi.c 1.2 93/07/16 11:41:39 ROOT_DOS Exp $
  3. *    15 Jul 93    1.2        GT    Fix warnings.                                    *
  4. ****************************************************************************/
  5.  
  6. #include <stdio.h>
  7. #include "global.h"
  8. #include "config.h"
  9. #include "hardware.h"
  10.  
  11. extern FILE *Rawterm;
  12.  
  13. void
  14. ansi_putc(sp,c)
  15. struct screen *sp;
  16. char c;
  17. {
  18.     putc(c,Rawterm);
  19.     return;
  20. }
  21.