home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 387b.lha / dice_v2.02 / lib / extra / os14.c < prev    next >
Encoding:
C/C++ Source or Header  |  1990-05-30  |  255 b   |  22 lines

  1.  
  2. /*
  3.  *  OS14.C
  4.  */
  5.  
  6. #include <exec/types.h>
  7. #include <exec/libraries.h>
  8.  
  9. extern struct Library *SysBase;
  10.  
  11. void
  12. OS1_4()
  13. {
  14.     char *str = "Runs under 1.4 only\n";
  15.  
  16.     if (SysBase->lib_Version < 36) {
  17.     Write(Output(), str, strlen(str));
  18.     exit(1);
  19.     }
  20. }
  21.  
  22.