restore VxWorks 5 compatibility

This commit is contained in:
2023-01-23 15:18:49 +01:00
parent 5db310813f
commit 23511c4a53
2 changed files with 2 additions and 3 deletions
@@ -6,7 +6,6 @@
\*************************************************************************/
#include <algorithm>
#include <limits>
#include <string>
#include <set>
+2 -2
View File
@@ -148,8 +148,8 @@ void testTok(const char *inp,
const char *expectTok,
const char *expectSave)
{
char *scratch = !inp ? NULL : strdup(inp);
char *allocSave = !save ? NULL : strdup(save);
char *scratch = !inp ? NULL : epicsStrDup(inp);
char *allocSave = !save ? NULL : epicsStrDup(save);
char *actualSave = allocSave;
char *actualTok;