Skip to content
Snippets Groups Projects
Commit 959dc43d authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Borland C needs the strlcpy definition too

The definition of vsnprintf as _vsnprintf didn't seem to hurt the build
(as well, for Borland)
parent 7c411455
Branches
Tags
1 merge request!455Update branch with changes from master
......@@ -219,7 +219,7 @@ extern "C" {
#define snprintf safe_snprintf
#endif
#if defined(_MSC_VER) || defined(__MINGW32__) || defined(__DMC__)
#if defined(_MSC_VER) || defined(__MINGW32__) || defined(__DMC__) || defined(__BORLANDC__)
#if !defined(snprintf)
#define snprintf _snprintf
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment