summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-04-21 15:03:52 +0000
committerUlrich Drepper <drepper@redhat.com>2000-04-21 15:03:52 +0000
commit761df3a7aa6eb65aa66c78e6c1da627e453de458 (patch)
tree99b5a1fb140171893f8c66694b1db3396017e32e
parent376b8b3de93bcb3bb4a739d62bc02895f6eba227 (diff)
Update.
2000-04-21 Jakub Jelinek <jakub@redhat.com> * libio/vasprintf.c: Include string.h to get memcpy prototype.
-rw-r--r--ChangeLog4
-rw-r--r--libio/vasprintf.c1
2 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index a62bc29739..32346c52d8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2000-04-21 Jakub Jelinek <jakub@redhat.com>
+
+ * libio/vasprintf.c: Include string.h to get memcpy prototype.
+
2000-04-20 Ulrich Drepper <drepper@redhat.com>
* wcsmbs/wcsrtombs.c (__wcsrtombs): If output buffer is too small
diff --git a/libio/vasprintf.c b/libio/vasprintf.c
index 0889a3151e..fb3109e0a4 100644
--- a/libio/vasprintf.c
+++ b/libio/vasprintf.c
@@ -24,6 +24,7 @@
General Public License. */
#include <malloc.h>
+#include <string.h>
#include "libioP.h"
#include "stdio.h"
#include "strfile.h"