home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / pccts.zip / pccts / lang / C / proto.h < prev    next >
C/C++ Source or Header  |  1994-03-31  |  548b  |  25 lines

  1. #ifdef __STDC__
  2. char *mystrdup(char *);
  3. struct _ast *zzmk_ast(struct _ast *, int, ...);
  4. struct _ast *bottom(struct _ast *);
  5. struct _ast *defineArgs(struct _ast *, Sym **);
  6. void error(char *);
  7. void error1(char *, char *);
  8. void warn(char *);
  9. void warn1(char *, char *);
  10. Sym *addsym(int, char *,int , struct _ast *, struct _ast *);
  11. #else
  12. char *mystrdup();
  13. struct _ast *zzmk_ast();
  14. struct _ast *bottom();
  15. struct _ast *defineArgs();
  16. void error();
  17. void error1();
  18. void warn();
  19. void warn1();
  20. Sym *addsym();
  21. #endif
  22.  
  23. extern Sym *Globals;
  24. extern Sym *Params;
  25.