home *** CD-ROM | disk | FTP | other *** search
/ ftp.cs.arizona.edu / ftp.cs.arizona.edu.tar / ftp.cs.arizona.edu / icon / historic / v92.tgz / v92.tar / v92 / src / runtime / fxtra.r < prev    next >
Text File  |  1996-03-22  |  747b  |  28 lines

  1. /*
  2.  * File: fxtra.r
  3.  *  Contents: additional functions to extend the standard Icon repertoire.
  4.  *  This file includes collections of functions, such as functions specific to
  5.  *  MS-DOS (DosFncs).
  6.  *
  7.  *  These collections are under the control of conditional compilation
  8.  *  as indicated by the symbols in parentheses. To enable a set of functions,
  9.  *  define the corresponding symbol in ../h/define.h.  The functions themselves
  10.  *  are in separate files, included according to the defined symbols.
  11.  */
  12.  
  13.  
  14. #ifdef DosFncs
  15. #include "fxmsdos.ri"
  16. #endif                    /* DosFncs */
  17.  
  18. #ifdef ArmFncs
  19. #include "fxarm.ri"
  20. #endif                    /* ArmFncs */
  21.  
  22. #ifdef Visualization
  23. #include "fxvis.ri"
  24. #endif                    /* Visualization */
  25.  
  26.  
  27. static char junk;            /* avoid empty module */
  28.