diff options
author | pixel <pixel> | 2005-11-09 09:11:43 +0000 |
---|---|---|
committer | pixel <pixel> | 2005-11-09 09:11:43 +0000 |
commit | ddd848c25e026cad919f6039a60df37c86c8332e (patch) | |
tree | 0adf18b21961aedac76a745c48448a68357eb5c6 | |
parent | 199ffc13657a836c1469ea29942ee7c0a63c79a6 (diff) |
Fixing more cross platform issues...
-rw-r--r-- | lib/String.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/String.cc b/lib/String.cc index 0c46ddd..8bc5bdc 100644 --- a/lib/String.cc +++ b/lib/String.cc @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: String.cc,v 1.38 2005-03-29 01:47:30 pixel Exp $ */ +/* $Id: String.cc,v 1.39 2005-11-09 09:11:43 pixel Exp $ */ #include <stdio.h> #include <string.h> @@ -50,7 +50,7 @@ String::String(const String & s) : str(Base::strdup(s.str)), siz(s.siz) { } #ifndef asprintf -extern "C" int asprintf(char **, const char *, ...); +//extern "C" int asprintf(char **, const char *, ...); #endif String::String(char c) : siz(1) { |