From 2a7c71e309337588b3815ea7ff1fe20d734d50d9 Mon Sep 17 00:00:00 2001 From: "brian@zim.(none)" <> Date: Tue, 26 Apr 2005 18:19:54 -0700 Subject: Changes to create storage directory for storage engines. --- storage/ndb/src/common/util/strdup.c | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 storage/ndb/src/common/util/strdup.c (limited to 'storage/ndb/src/common/util/strdup.c') diff --git a/storage/ndb/src/common/util/strdup.c b/storage/ndb/src/common/util/strdup.c new file mode 100644 index 00000000000..d8f4d99bd28 --- /dev/null +++ b/storage/ndb/src/common/util/strdup.c @@ -0,0 +1,28 @@ +/* Copyright (C) 2003 MySQL AB + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ + + +#include + +#ifndef HAVE_STRDUP +char * +strdup(const char *s){ + void *p2; + if ((p2 = malloc(strlen(s)+1))) + strcpy(p2, s); + return p2; +} +#endif -- cgit v1.2.1