tst-rec-dlopen: Fix build fail due to missing inclusion of string.h

Message ID 57553929.4000603@linux.vnet.ibm.com
State Committed
Headers

Commit Message

Stefan Liebler June 6, 2016, 8:49 a.m. UTC
  Hi,

on S390, I get an compile error for dlfcn/tst-rec-dlopen.c:
tst-rec-dlopen.c: In function ‘malloc’:
tst-rec-dlopen.c:101:4: error: implicit declaration of function ‘strlen’ 
[-Werror=implicit-function-declaration]
     (void) write (STDOUT_FILENO, message, strlen (message));
     ^
tst-rec-dlopen.c:101:42: error: incompatible implicit declaration of 
built-in function ‘strlen’ [-Werror]
     (void) write (STDOUT_FILENO, message, strlen (message));
                                           ^
tst-rec-dlopen.c:112:42: error: incompatible implicit declaration of 
built-in function ‘strlen’ [-Werror]
     (void) write (STDOUT_FILENO, message, strlen (message));
                                           ^


This patch adds the missing "#include <string.h>" for strlen.
Okay to commit?

Bye
Stefan

ChangeLog:

	* dlfcn/tst-rec-dlopen.c: Include string.h.
  

Comments

Andreas Schwab June 6, 2016, 9:01 a.m. UTC | #1
Stefan Liebler <stli@linux.vnet.ibm.com> writes:

> 	* dlfcn/tst-rec-dlopen.c: Include string.h.

Ok.

Andreas.
  
Stefan Liebler June 6, 2016, 9:07 a.m. UTC | #2
I've pushed it.
Thanks.
  

Patch

diff --git a/dlfcn/tst-rec-dlopen.c b/dlfcn/tst-rec-dlopen.c
index 07e0cc4..0269851 100644
--- a/dlfcn/tst-rec-dlopen.c
+++ b/dlfcn/tst-rec-dlopen.c
@@ -23,6 +23,7 @@ 
 #include <stdalign.h>
 #include <sys/mman.h>
 #include <unistd.h>
+#include <string.h>
 
 #define DSO "moddummy1.so"
 #define FUNC "dummy1"