]> git.ipfire.org Git - thirdparty/glibc.git/commit
tst-rec-dlopen: Fix build fail due to missing inclusion of string.h
authorStefan Liebler <stli@linux.vnet.ibm.com>
Mon, 6 Jun 2016 09:03:04 +0000 (11:03 +0200)
committerStefan Liebler <stli@linux.vnet.ibm.com>
Mon, 6 Jun 2016 09:03:04 +0000 (11:03 +0200)
commitb5537473c2ccb6874985e3d2bc0a0c7e204213bd
treed05488c2f1f3d44325203aad2150e26a01d616d0
parentb9f5c3acc01a836369b9cbc3fc50ca550261a185
tst-rec-dlopen: Fix build fail due to missing inclusion of string.h

on S390, I get a 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.

ChangeLog:

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