diff options
author | serg@serg.mylan <> | 2004-02-05 22:08:29 +0100 |
---|---|---|
committer | serg@serg.mylan <> | 2004-02-05 22:08:29 +0100 |
commit | 415dff49097676231f3cdfc74ebd9fa0ce523092 (patch) | |
tree | 1cb2b680565d77fe14c5acad6118e2f7c144e58b /mysys/my_new.cc | |
parent | fe76ec1ea9aa7292d49df00613d90329032615b4 (diff) | |
download | mariadb-git-415dff49097676231f3cdfc74ebd9fa0ce523092.tar.gz |
reverted
fixed in 4.0 properly
Diffstat (limited to 'mysys/my_new.cc')
-rw-r--r-- | mysys/my_new.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysys/my_new.cc b/mysys/my_new.cc index ec27502d8aa..14423c3afd5 100644 --- a/mysys/my_new.cc +++ b/mysys/my_new.cc @@ -19,10 +19,10 @@ with gcc 3.0.x to avoid including libstdc++ */ -#ifdef USE_MYSYS_NEW - #include "mysys_priv.h" +#ifdef USE_MYSYS_NEW + void *operator new (size_t sz) { return (void *) malloc (sz ? sz : 1); |