home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / C / Applications / Moscow ML 1.42 / src / !runtime / prims.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-08-18  |  184 b   |  12 lines  |  [TEXT/R*ch]

  1. /* Interface with C primitives. */
  2.  
  3. #ifndef _prims_
  4. #define _prims_
  5.  
  6. typedef value (*c_primitive)();
  7.  
  8. extern c_primitive cprim[];
  9. extern char * names_of_cprim[];
  10.  
  11. #endif /* _prims_ */
  12.