main.h 542 B

1234567891011121314151617181920
  1. /*
  2. * The Amsterdam Compiler Kit
  3. * See the copyright notice in the ACK home directory, in the file "Copyright".
  4. */
  5. #ifndef LANG_CEM_CEMCOM_ANSI_MAIN_H
  6. #define LANG_CEM_CEMCOM_ANSI_MAIN_H
  7. /* lang/cem/cemcom.ansi/main.c */
  8. int main(int argc, char *argv[]);
  9. void list_dependencies(char *source);
  10. void add_dependency(char *s);
  11. void dependency(char *s, char *source);
  12. void compile(int argc, char *argv[]);
  13. void init(void);
  14. void init_specials(struct sp_id *si);
  15. void No_Mem(void);
  16. void C_failed(void);
  17. #endif /* LANG_CEM_CEMCOM_ANSI_MAIN_H */