From e5b4a1671d907d14bf0b61efc30a93de7c96709d Mon Sep 17 00:00:00 2001 From: Fredrik Holmqvist Date: Wed, 25 Apr 2012 18:20:56 +0200 Subject: [PATCH] Since we are patching strncpy.c change it over to strncpy.cpp. --- src/system/kernel/lib/Jamfile | 2 +- src/system/libroot/posix/string/Jamfile | 2 +- src/system/libroot/posix/string/{strncpy.c => strncpy.cpp} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename src/system/libroot/posix/string/{strncpy.c => strncpy.cpp} (100%) diff --git a/src/system/kernel/lib/Jamfile b/src/system/kernel/lib/Jamfile index 5d4cba6850..f778e101b9 100644 --- a/src/system/kernel/lib/Jamfile +++ b/src/system/kernel/lib/Jamfile @@ -112,7 +112,7 @@ KernelMergeObject kernel_lib_posix.o : strlen.cpp strncat.c strncmp.c - strncpy.c + strncpy.cpp strndup.cpp strnlen.cpp strpbrk.c diff --git a/src/system/libroot/posix/string/Jamfile b/src/system/libroot/posix/string/Jamfile index 9f363f6b73..68eed17fe0 100644 --- a/src/system/libroot/posix/string/Jamfile +++ b/src/system/libroot/posix/string/Jamfile @@ -32,7 +32,7 @@ MergeObject posix_string.o : strlwr.c strncat.c strncmp.c - strncpy.c + strncpy.cpp strndup.cpp strnlen.cpp strpbrk.c diff --git a/src/system/libroot/posix/string/strncpy.c b/src/system/libroot/posix/string/strncpy.cpp similarity index 100% rename from src/system/libroot/posix/string/strncpy.c rename to src/system/libroot/posix/string/strncpy.cpp