From 508911b446b3d0abcd6de3983f9e3bdf2b884aad Mon Sep 17 00:00:00 2001 From: Marcus Meissner Date: Sun, 7 May 2000 18:27:28 +0000 Subject: [PATCH] Old versions of glibc might not have STN_UNDEF defined. --- debugger/stabs.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/debugger/stabs.c b/debugger/stabs.c index b899304ab47..02796153f21 100644 --- a/debugger/stabs.c +++ b/debugger/stabs.c @@ -50,6 +50,10 @@ #define N_UNDF 0x00 #endif +#ifndef STN_UNDEF +# define STN_UNDEF 0 +#endif + #define N_GSYM 0x20 #define N_FUN 0x24 #define N_STSYM 0x26