您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

40 行
1.3KB

  1. /* Header file for collect routines.
  2. Copyright (C) 1998-2020 Free Software Foundation, Inc.
  3. This file is part of GCC.
  4. GCC is free software; you can redistribute it and/or modify it under
  5. the terms of the GNU General Public License as published by the Free
  6. Software Foundation; either version 3, or (at your option) any later
  7. version.
  8. GCC is distributed in the hope that it will be useful, but WITHOUT ANY
  9. WARRANTY; without even the implied warranty of MERCHANTABILITY or
  10. FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
  11. for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with GCC; see the file COPYING3. If not see
  14. <http://www.gnu.org/licenses/>. */
  15. #ifndef GCC_COLLECT2_H
  16. #define GCC_COLLECT2_H
  17. extern struct pex_obj *collect_execute (const char *, char **, const char *,
  18. const char *, int flags);
  19. extern int collect_wait (const char *, struct pex_obj *);
  20. extern int file_exists (const char *);
  21. extern const char *c_file_name;
  22. extern struct obstack temporary_obstack;
  23. extern char *temporary_firstobj;
  24. extern bool may_unlink_output_file;
  25. extern void notice_translated (const char *, ...) ATTRIBUTE_PRINTF_1;
  26. extern void notice (const char *, ...) ATTRIBUTE_PRINTF_1;
  27. extern bool at_file_supplied;
  28. #endif /* ! GCC_COLLECT2_H */