]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
2005-01-29 Yoshinori K. Okuji <okuji@enbug.org>
authorokuji <okuji@localhost>
Sat, 29 Jan 2005 22:01:54 +0000 (22:01 +0000)
committerokuji <okuji@localhost>
Sat, 29 Jan 2005 22:01:54 +0000 (22:01 +0000)
  * include/grub/misc.h (memmove): New prototype.
  (memcpy): Likewise.

ChangeLog
include/grub/misc.h

index d68d9e9d625ed6d9409ac435bfea600b21d2c5b0..3b6977faf1d762fa9d7352ea4dae565b4d41f573 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-01-29  Yoshinori K. Okuji  <okuji@enbug.org>
+
+       * include/grub/misc.h (memmove): New prototype.
+       (memcpy): Likewise.
+
 2005-01-22  Hollis Blanchard  <hollis@penguinppc.org>
 
        * disk/powerpc/ieee1275/ofdisk.c (grub_ofdisk_open): Don't initialize
index 7becbe89890af89ce7772d269df9fba74f38b096..00bc7d5f9eaefdbc5399a46b3a82f8d75a0a73df 100644 (file)
@@ -1,7 +1,7 @@
 /* misc.h - prototypes for misc functions */
 /*
  *  GRUB  --  GRand Unified Bootloader
- *  Copyright (C) 2002,2003  Free Software Foundation, Inc.
+ *  Copyright (C) 2002,2003,2005  Free Software Foundation, Inc.
  *
  *  GRUB is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
@@ -36,6 +36,9 @@ char *EXPORT_FUNC(grub_stpcpy) (char *dest, const char *src);
 char *EXPORT_FUNC(grub_strcat) (char *dest, const char *src);
 char *EXPORT_FUNC(grub_strncat) (char *dest, const char *src, int c);
 
+/* Prototypes for aliases.  */
+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);
 
 int EXPORT_FUNC(grub_memcmp) (const void *s1, const void *s2, grub_size_t n);
 int EXPORT_FUNC(grub_strcmp) (const char *s1, const char *s2);