diff options
author | unknown <marko@hundin.mysql.fi> | 2004-05-11 12:51:42 +0300 |
---|---|---|
committer | unknown <marko@hundin.mysql.fi> | 2004-05-11 12:51:42 +0300 |
commit | 8d9ce860ba1d78705e42a639eb988b5223f88ac8 (patch) | |
tree | dc330ace7a48b2aff7fb62e5e0a381008c3674ac /innobase/include/ut0mem.h | |
parent | 03795dabb77a1cd825859abdf51f285c584b2952 (diff) | |
download | mariadb-git-8d9ce860ba1d78705e42a639eb988b5223f88ac8.tar.gz |
InnoDB: Replace ut_strdup() with mem_strdup()
innobase/include/ut0mem.h:
Remove ut_strdup(), as it is a clone of mem_strdup()
innobase/os/os0file.c:
Replace ut_strdup() with mem_strdup()
innobase/ut/ut0mem.c:
Remove ut_strdup(), as it is a clone of mem_strdup()
Diffstat (limited to 'innobase/include/ut0mem.h')
-rw-r--r-- | innobase/include/ut0mem.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/innobase/include/ut0mem.h b/innobase/include/ut0mem.h index b208fac8691..bfc937eb212 100644 --- a/innobase/include/ut0mem.h +++ b/innobase/include/ut0mem.h @@ -129,16 +129,6 @@ ut_str_catenate( char* str1, /* in: null-terminated string */ char* str2); /* in: null-terminated string */ -/************************************************************************** -Return a copy of the given string. The returned string must be freed -using mem_free. */ - -char* -ut_strdup( -/*======*/ - /* out, own: cnull-terminated string */ - char* str); /* in: null-terminated string */ - #ifndef UNIV_NONINL #include "ut0mem.ic" #endif |