8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f604b39 commit 3438065Copy full SHA for 3438065
src/interfaces/ecpg/compatlib/informix.c
@@ -135,7 +135,7 @@ deccopy(decimal * src, decimal * target)
135
}
136
137
static char *
138
-strndup(const char *str, size_t len)
+ecpg_strndup(const char *str, size_t len)
139
{
140
int real_len = strlen(str);
141
int use_len = (real_len > len) ? len : real_len;
@@ -156,7 +156,7 @@ strndup(const char *str, size_t len)
156
int
157
deccvasc(char *cp, int len, decimal * np)
158
159
- char *str = strndup(cp, len); /* decimal_in always converts the
+ char *str = ecpg_strndup(cp, len); /* decimal_in always converts the
160
* complete string */
161
int ret = 0;
162
numeric *result;
0 commit comments