aboutsummaryrefslogtreecommitdiff
path: root/gcc/tsystem.h
diff options
context:
space:
mode:
authorJan Beulich <jbeulich@novell.com>2004-09-02 22:26:27 -0700
committerRichard Henderson <rth@gcc.gnu.org>2004-09-02 22:26:27 -0700
commit7f148c2ff96965e5706f5b98381e72646017f820 (patch)
treefcf045b41ea79dda3c31fb92dd255537f76402fa /gcc/tsystem.h
parent9e42ab3e45c060ceb91a552a045aa66a571bf163 (diff)
downloadgcc-7f148c2ff96965e5706f5b98381e72646017f820.zip
gcc-7f148c2ff96965e5706f5b98381e72646017f820.tar.gz
gcc-7f148c2ff96965e5706f5b98381e72646017f820.tar.bz2
Makefile.in (LIB2ADDEHDEP): Add unwind.h and unwind-pe.h.
* Makefile.in (LIB2ADDEHDEP): Add unwind.h and unwind-pe.h. * mklibgcc.in (libgcc_dep): New, covering general dependencies, but not unwind code specific ones. (libgcc2_c_dep): Replace general dependencies with use of libgcc_dep. Remove unwind code specific dependencies. (libgcov_c_dep): Replace general dependencies with use of libgcc_dep. Remove gbl-ctors.h. Add libgcc_dep to output generated for LIB2ADD, LIB2ADDEH, and LIB2ADD_ST. Add LIB2ADDEHDEP to output generated for LIB2ADDEH. From-SVN: r87026
Diffstat (limited to 'gcc/tsystem.h')
-rw-r--r--gcc/tsystem.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/gcc/tsystem.h b/gcc/tsystem.h
index d7f1ebc..7928b31 100644
--- a/gcc/tsystem.h
+++ b/gcc/tsystem.h
@@ -69,6 +69,14 @@ extern void abort (void) __attribute__ ((__noreturn__));
extern size_t strlen (const char *);
#endif
+#ifndef memcpy
+extern void *memcpy (void *, const void *, size_t);
+#endif
+
+#ifndef memset
+extern void *memset (void *, int, size_t);
+#endif
+
#else /* ! inhibit_libc */
/* We disable this when inhibit_libc, so that gcc can still be built without
needing header files first. */