home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / e / emxdev8f.zip / CONIO.H < prev    next >
Text File  |  1992-10-31  |  186b  |  10 lines

  1. /* conio.h (emx+gcc) */
  2.  
  3. #if !defined (_CONIO_H)
  4. #define _CONIO_H
  5.  
  6. #define getch()   _read_kbd (0, 1, 0)
  7. #define getche()  _read_kbd (1, 1, 0)
  8.  
  9. #endif /* !defined (_CONIO_H) */
  10.