home *** CD-ROM | disk | FTP | other *** search
/ APDL Public Domain 1 / APDL_PD1A.iso / program / language / icon / Source / Iconx / C / Fxtra < prev    next >
Encoding:
Text File  |  1990-07-19  |  806 b   |  32 lines

  1. /*
  2.  * File: fxtra.c
  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. #include "../h/config.h"
  14. #include "../h/rt.h"
  15. #include "rproto.h"
  16.  
  17.  
  18. #ifdef DosFncs
  19. #include "fxmsdos.c"
  20. #endif                    /* DosFncs */
  21.  
  22. #ifdef ArmFncs
  23. #include "fxarm.c"
  24. #endif                    /* ArmFncs */
  25.  
  26. #ifdef EvalTrace
  27. #include "fxtrace.c"
  28. #endif                    /* EvalTrace */
  29.  
  30.  
  31. static char junk;            /* avoid empty module */
  32.