home *** CD-ROM | disk | FTP | other *** search
/ ftp.cs.arizona.edu / ftp.cs.arizona.edu.tar / ftp.cs.arizona.edu / icon / historic / v941.tgz / icon.v941src.tar / icon.v941src / src / runtime / fxtra.r < prev    next >
Text File  |  2000-07-29  |  673b  |  23 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. static char junk;            /* avoid empty module */
  23.