diff options
| author | Stefan Eßer <se@FreeBSD.org> | 2021-09-19 12:41:20 +0000 |
|---|---|---|
| committer | Stefan Eßer <se@FreeBSD.org> | 2021-09-19 12:41:20 +0000 |
| commit | a60ef1802a36f2f2a5611564191440ea1c1e2f17 (patch) | |
| tree | 8ec2045a9bf751b60e0615ae80a9d667535e3db5 /include/vector.h | |
| parent | 2f57ecae4b98e76e5d675563785a7e6c59c868c4 (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.h | 4 |
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 |
