home *** CD-ROM | disk | FTP | other *** search
/ ANews 3 / AnewsCD3.iso / DP / Programmation / GCC / gcc_include / amiga_user.h next >
Encoding:
C/C++ Source or Header  |  1993-03-08  |  529 b   |  25 lines

  1. /*    amiga user hooks for ansic.library        */
  2. /*    (c)Copyright 1992 Davide Pasetto         */
  3.  
  4. /*    These are two hook in the startup module; they are called before    */
  5. /*    (and after) starting the task. All the standard library are opened    */
  6. /*    and file, memory & directory functions are initialized.                */
  7.  
  8. #ifndef    _AMIGA_USER_H
  9. #define    _AMIGA_USER_H
  10.  
  11. #ifdef    __cplusplus
  12. extern "C" {
  13. #endif
  14.  
  15. extern int    ___user_init(void);
  16. extern void    ___user_cleanup(void);
  17. extern void    _stub(void);
  18.  
  19. #ifdef    __cplusplus
  20. }
  21. #endif
  22.  
  23. #endif        /* _AMIGA_USER_H */
  24.  
  25.