home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / Misc / M2V11-2.LHA / modula / dice / dice.lha / dynamic / dynamic.lha / objsrc / libs / exec.c < prev    next >
Encoding:
C/C++ Source or Header  |  1991-04-28  |  260 b   |  22 lines

  1.  
  2. /*
  3.  *  EXEC.C   exec.library support
  4.  */
  5.  
  6. #include <exec/types.h>
  7. #include <exec/libraries.h>
  8. #include <clib/exec_protos.h>
  9.  
  10. typedef struct Library Library;
  11.  
  12. Library *hyper_SysBase;
  13.  
  14. long
  15. _auto_start()
  16. {
  17.     hyper_SysBase = *(Library **)4;
  18.     return(1);
  19. }
  20.  
  21.  
  22.