diff options
| author | Ian Dowse <iedowse@FreeBSD.org> | 2002-01-18 21:54:02 +0000 |
|---|---|---|
| committer | Ian Dowse <iedowse@FreeBSD.org> | 2002-01-18 21:54:02 +0000 |
| commit | 3db327c495d4ab1ed1f6b3553a5c3dbc60d47d39 (patch) | |
| tree | 27edb49ac4772d05e0e458635e289ce03f661e36 | |
| parent | d5e4d0437f45e20b7cc191af9cd3424afb96e043 (diff) | |
Notes
| -rw-r--r-- | sys/boot/alpha/boot1/sys.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sys/boot/alpha/boot1/sys.c b/sys/boot/alpha/boot1/sys.c index ad0552386dcc..61816041c7fc 100644 --- a/sys/boot/alpha/boot1/sys.c +++ b/sys/boot/alpha/boot1/sys.c @@ -244,3 +244,13 @@ openrd(char *name) poff = 0; return 0; } + +void +bcopy(const void *src, void *dst, size_t len) +{ + const char *s; + char *d; + + for (d = dst, s = src; len; len--) + *d++ = *s++; +} |
