home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD1.iso / Editor / GED403R.LZX / Install / Install.run / GOLDEDDATA / developer / examples / api / rexx / init.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-02-15  |  240 b   |  23 lines

  1. #include "defs.h"
  2.  
  3. /// "Prototypes"
  4.  
  5. Prototype void InitC(void);
  6.  
  7. ///
  8. /// "Init"
  9.  
  10. /* ----------------------------------- InitC -----------------------------------
  11.  
  12.  Library startup code (C entry point).
  13.  
  14. */
  15.  
  16. void
  17. InitC(void)
  18. {
  19.     ;
  20. }
  21.  
  22. ///
  23.