summaryrefslogtreecommitdiff
path: root/include/vector.h
diff options
context:
space:
mode:
authorStefan Eßer <se@FreeBSD.org>2021-09-19 12:41:20 +0000
committerStefan Eßer <se@FreeBSD.org>2021-09-19 12:41:20 +0000
commita60ef1802a36f2f2a5611564191440ea1c1e2f17 (patch)
tree8ec2045a9bf751b60e0615ae80a9d667535e3db5 /include/vector.h
parent2f57ecae4b98e76e5d675563785a7e6c59c868c4 (diff)
vendor/bc: update to upstream version 5.0.2vendor/bc/5.0.2
Diffstat (limited to 'include/vector.h')
-rw-r--r--include/vector.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/vector.h b/include/vector.h
index 8f7cbbcc2b50..c35d22c9eff7 100644
--- a/include/vector.h
+++ b/include/vector.h
@@ -441,7 +441,7 @@ void bc_slabvec_print(BcVec *v, const char *func);
* contain @a s.
* @param s The source string.
*/
-#define strcpy(d, l, s) strcpy(d, s)
+#define bc_strcpy(d, l, s) strcpy(d, s)
#else // _WIN32
@@ -452,7 +452,7 @@ void bc_slabvec_print(BcVec *v, const char *func);
* contain @a s.
* @param s The source string.
*/
-#define strcpy(d, l, s) strcpy_s(d, l, s)
+#define bc_strcpy(d, l, s) strcpy_s(d, l, s)
#endif // _WIN32