diff options
| author | David E. O'Brien <obrien@FreeBSD.org> | 1999-08-26 09:30:50 +0000 |
|---|---|---|
| committer | David E. O'Brien <obrien@FreeBSD.org> | 1999-08-26 09:30:50 +0000 |
| commit | f1a94e6381a98f2f045a6b44e7d883c5c8c82df0 (patch) | |
| tree | 507253686fa007efab93dd8099feba305e495d2c /contrib/gcc/libgcc1-test.c | |
| parent | 50de873b592be742174dd5631894601740d00fb8 (diff) | |
| parent | 2a266d02ba4304af542da2cc521ecc0edc1c9706 (diff) | |
Notes
Diffstat (limited to 'contrib/gcc/libgcc1-test.c')
| -rw-r--r-- | contrib/gcc/libgcc1-test.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/contrib/gcc/libgcc1-test.c b/contrib/gcc/libgcc1-test.c index 392d4fc7e9c2..d9c250e99d00 100644 --- a/contrib/gcc/libgcc1-test.c +++ b/contrib/gcc/libgcc1-test.c @@ -95,6 +95,12 @@ dfoo () message saying the start address is defaulted. */ extern void start() __asm__("start"); extern void _start() __asm__("_start"); +extern void __start() __asm__("__start"); + +/* Provide functions that might be needed by soft-float emulation routines. */ +void memcpy() {} void start() {} void _start() {} +void __start() {} +void mainCRTStartup() {} |
