diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-12-10 10:48:27 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-12-10 10:48:27 +0000 |
commit | 1ae139718ffd3f9cab15c3783b64c3e6580c0529 (patch) | |
tree | ddf724895c1fcc9c46b68bba106e5e4b828d44e4 /gcc/collect2.h | |
parent | 097f7ac0001c2630bdb3d956973df1ea2623d702 (diff) | |
download | gcc-1ae139718ffd3f9cab15c3783b64c3e6580c0529.tar.gz |
* collect2.h: New header file for prototypes.
* Makefile.in (collect2.o, tlink.o): Depend on collect2.h.
* collect2.c: Include collect2.h.
* tlink.c: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@24231 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/collect2.h')
-rw-r--r-- | gcc/collect2.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/gcc/collect2.h b/gcc/collect2.h new file mode 100644 index 00000000000..1b1919fd406 --- /dev/null +++ b/gcc/collect2.h @@ -0,0 +1,16 @@ +#ifndef __COLLECT2_H__ +#define __COLLECT2_H__ + +extern void do_tlink PARAMS ((char **, char **)); + +extern void collect_execute PARAMS ((char *, char **, char *)); + +extern void collect_exit PARAMS ((int)) ATTRIBUTE_NORETURN; + +extern int collect_wait PARAMS ((char *)); + +extern void dump_file PARAMS ((char *)); + +extern int file_exists PARAMS ((char *)); + +#endif /* ! __COLLECT2_H__ */ |