diff options
Diffstat (limited to 'sys/boot/i386/gptboot/gptboot.c')
-rw-r--r-- | sys/boot/i386/gptboot/gptboot.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/sys/boot/i386/gptboot/gptboot.c b/sys/boot/i386/gptboot/gptboot.c index 3d2fafe..275aa66 100644 --- a/sys/boot/i386/gptboot/gptboot.c +++ b/sys/boot/i386/gptboot/gptboot.c @@ -129,17 +129,7 @@ static int xputc(int); static int xgetc(int); static int getc(int); -#if 1 #define memcpy __builtin_memcpy -#else -static void memcpy(char *, const char *, int); -static void -memcpy(char *dst, const char *src, int len) -{ - while (len--) - *dst++ = *src++; -} -#endif static inline int strcmp(const char *s1, const char *s2) |