From 2bf68f6938e28c5db3aa9ed00fea83142ada4c1b Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Thu, 23 Oct 2003 19:35:33 +0000 Subject: [PATCH] show itoa --- stepmania/src/archutils/Unix/CrashHandler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/archutils/Unix/CrashHandler.cpp b/stepmania/src/archutils/Unix/CrashHandler.cpp index 5b4817eeff..ad28976a8a 100644 --- a/stepmania/src/archutils/Unix/CrashHandler.cpp +++ b/stepmania/src/archutils/Unix/CrashHandler.cpp @@ -135,7 +135,6 @@ static void parent_process( int to_child, void **BacktracePointers, int SignalRe * XXX: make sure the parent dying doesn't take out the child */ -#if defined(BACKTRACE_METHOD_X86_LINUX) /* The x86 backtrace() in glibc doesn't make any effort at all to decode * signal trampolines. The result is that it doesn't properly show the * function that actually caused the signal--which is the most important @@ -156,6 +155,7 @@ static const char *itoa(unsigned n) return p; } +#if defined(BACKTRACE_METHOD_X86_LINUX) static int xtoi( const char *hex ) { int ret = 0;