diff options
Diffstat (limited to 'ndb/src/common/util/strlcat.c')
-rw-r--r-- | ndb/src/common/util/strlcat.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/ndb/src/common/util/strlcat.c b/ndb/src/common/util/strlcat.c index bf8b0d9a5cb..3da47dee6f5 100644 --- a/ndb/src/common/util/strlcat.c +++ b/ndb/src/common/util/strlcat.c @@ -31,17 +31,14 @@ * SUCH DAMAGE. */ -#ifdef HAVE_CONFIG_H -#include <config.h> -#endif - +#include <ndb_global.h> #include <ndb_types.h> /* RCSID("$KTH: strlcat.c,v 1.1 2000/08/16 01:23:47 lha Exp $"); */ -/*#include <NdbString.h>*/ #ifndef HAVE_STRLCAT + size_t strlcat (char *dst, const char *src, size_t dst_sz) { |