Jacek Caban : dbghelp: Get rid of no longer needed #ifdefs.

Alexandre Julliard julliard at winehq.org
Tue Apr 7 15:27:14 CDT 2020


Module: wine
Branch: master
Commit: e014d325ddb87dbb4678ef47ef17f9e7f49b0248
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=e014d325ddb87dbb4678ef47ef17f9e7f49b0248

Author: Jacek Caban <jacek at codeweavers.com>
Date:   Mon Apr  6 23:42:15 2020 +0200

dbghelp: Get rid of no longer needed #ifdefs.

Signed-off-by: Jacek Caban <jacek at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/dbghelp/stabs.c | 17 -----------------
 1 file changed, 17 deletions(-)

diff --git a/dlls/dbghelp/stabs.c b/dlls/dbghelp/stabs.c
index e14e154cba..b1b4a6ef1c 100644
--- a/dlls/dbghelp/stabs.c
+++ b/dlls/dbghelp/stabs.c
@@ -51,33 +51,16 @@
 WINE_DEFAULT_DEBUG_CHANNEL(dbghelp_stabs);
 
 /* Masks for n_type field */
-#ifndef N_STAB
 #define N_STAB		0xe0
-#endif
-#ifndef N_PEXT
 #define N_PEXT		0x10
-#endif
-#ifndef N_TYPE
 #define N_TYPE		0x1e
-#endif
-#ifndef N_EXT
 #define N_EXT		0x01
-#endif
 
 /* Values for (n_type & N_TYPE) */
-#ifndef N_UNDF
 #define N_UNDF		0x00
-#endif
-#ifndef N_ABS
 #define N_ABS		0x02
-#endif
-#ifndef N_INDR
 #define N_INDR		0x0a
-#endif
-#ifndef N_SECT
 #define N_SECT		0x0e
-#endif
-
 #define N_GSYM		0x20
 #define N_FUN		0x24
 #define N_STSYM		0x26




More information about the wine-cvs mailing list