home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 200-299 / ff256.lzh / Stevie / os9.h < prev    next >
C/C++ Source or Header  |  1989-10-19  |  427b  |  30 lines

  1. /*
  2.  * OS9 v2.2
  3.  */
  4.  
  5. void set_ostate();
  6. void set_nstate();
  7.  
  8. int  inchar();
  9.  
  10. #ifdef OLD_IO
  11. void flushbuf();
  12. void outchar();
  13. void outstr();
  14. #else
  15. # define flushbuf() fflush(stdout)
  16. # define outchar(C) putchar(C)
  17. # define outstr(S)  fputs((S), stdout)
  18. #endif
  19.  
  20. void beep();
  21. void rename();
  22. void windinit();
  23. void windexit();
  24. void windgoto();
  25. void delay();
  26. #define remove(path) unlink(path)
  27. #ifndef strchr
  28. # define strchr index
  29. #endif
  30.