diff --git a/ChangeLog b/ChangeLog index a792f04e5..ff7098c58 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2009-10-28 Robert Millan + + * include/grub/misc.h: Stop checking for APPLE_CC. + 2009-10-28 Robert Millan * kern/i386/coreboot/init.c (grub_exit): Reimplement in a way that diff --git a/include/grub/misc.h b/include/grub/misc.h index e3a062898..faa2d5c42 100644 --- a/include/grub/misc.h +++ b/include/grub/misc.h @@ -76,7 +76,7 @@ grub_strncat (char *dest, const char *src, int c) } /* Prototypes for aliases. */ -#if !defined (GRUB_UTIL) && !defined (APPLE_CC) +#ifndef GRUB_UTIL int EXPORT_FUNC(memcmp) (const void *s1, const void *s2, grub_size_t n); void *EXPORT_FUNC(memmove) (void *dest, const void *src, grub_size_t n); void *EXPORT_FUNC(memcpy) (void *dest, const void *src, grub_size_t n);