]> sourceware.org Git - newlib-cygwin.git/commitdiff
newlib: xstormy16: add missing string.h include
authorMike Frysinger <vapier@gentoo.org>
Tue, 1 Mar 2022 06:14:33 +0000 (01:14 -0500)
committerMike Frysinger <vapier@gentoo.org>
Tue, 1 Mar 2022 06:14:33 +0000 (01:14 -0500)
Some of these functions are using memcpy & memset from string.h but
not including the header leading to implicit declaration warnings.

newlib/libc/machine/xstormy16/tiny-malloc.c

index 597e389dce7f1135c2473f7dd2746af5ca35aeef..e6f67a8867d9cada62cc05de23f2bfb2dc45ee2f 100644 (file)
@@ -271,6 +271,8 @@ free (void *block_p)
 #endif
 
 #ifdef DEFINE_REALLOC
+#include <string.h>
+
 void *
 realloc (void *block_p, size_t sz)
 {
@@ -310,6 +312,8 @@ realloc (void *block_p, size_t sz)
 #endif
 
 #ifdef DEFINE_CALLOC
+#include <string.h>
+
 void *
 calloc (size_t n, size_t elem_size)
 {
@@ -509,6 +513,7 @@ pvalloc (size_t sz)
 
 #ifdef DEFINE_MALLINFO
 #include "malloc.h"
+#include <string.h>
 
 struct mallinfo 
 mallinfo (void)
This page took 0.031378 seconds and 5 git commands to generate.