commit | 906d8ed8faa85df63341230b0a39c0d165f921a6 | [log] [tgz] |
---|---|---|
author | Jim Schaad <ietf@augustcellars.com> | Fri Dec 18 19:31:28 2015 -0800 |
committer | Jim Schaad <ietf@augustcellars.com> | Fri Dec 18 19:31:28 2015 -0800 |
tree | 36bbcbdea4e945bc9bb86cec8720c62149baaeb2 | |
parent | 3b3fc0f6f8ac1a9d0c994a5d5108b377d7ffbf67 [diff] |
MS strcat_s function missing.
diff --git a/dumper/dumper.c b/dumper/dumper.c index b2e3429..ce00eb0 100644 --- a/dumper/dumper.c +++ b/dumper/dumper.c
@@ -13,6 +13,10 @@ #define _countof(x) (sizeof(x)/sizeof(x[0])) #endif +#ifndef _MSC_VER +#define strcat_s(a, b, c) strcat(a, c) +#endif + typedef struct _FOO { char * fieldName; int type;