From 527edf0e490810d9fbfd5909b98fe1f4df70bd4e Mon Sep 17 00:00:00 2001 From: Wolfgang Thaller Date: Sun, 4 Oct 2020 15:44:03 +0200 Subject: [PATCH] keep bsd strings.h around as bsdstrings.h so it can be used on case-insensitive file systems --- interfaces-and-libraries.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/interfaces-and-libraries.sh b/interfaces-and-libraries.sh index bc19def411..8a058672d2 100755 --- a/interfaces-and-libraries.sh +++ b/interfaces-and-libraries.sh @@ -188,6 +188,7 @@ function removeConflictingHeaders() # newlib. For now, universal interfaces get the right of way. rm -f "$1/Threads.h" # thread.h: does not currently work anyways rm -f "$1/Memory.h" # memory.h: non-standard aliasof string.h + cp "$1/strings.h" "$1/bsdstrings.h" rm -f "$1/Strings.h" # strings.h: traditional bsd string functions }