Skip to content
Snippets Groups Projects
Commit c64d90d2 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 984f1eb6
No related branches found
No related tags found
No related merge requests found
Pipeline #5931 passed
...@@ -219,7 +219,7 @@ extern "C" { ...@@ -219,7 +219,7 @@ extern "C" {
#define snprintf safe_snprintf #define snprintf safe_snprintf
#endif #endif
#if defined(_MSC_VER) || defined(__MINGW32__) || defined(__DMC__) #if defined(_MSC_VER) || defined(__MINGW32__) || defined(__DMC__) || defined(__BORLANDC__)
#if !defined(snprintf) #if !defined(snprintf)
#define snprintf _snprintf #define snprintf _snprintf
#endif #endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment