mirror of
https://github.com/davea42/libdwarf-code.git
synced 2025-10-23 10:27:48 +08:00

* Some C99-isms * In the function 'esb_append', do nothing in the case of an empty string * Include the C++ guard in esb.h, globals.h, naming.h * The MSVC Compiler (2010) generates an error when the ';;' is found after some declarations * The MSVC Compiler (2010) generates an error when adding a 'void *' * The 'errno' has already an incompatible definition * The Windows build, uses the tsearch algorithm as a library; the selected algorithm is controlled by a definition in the config.h. Also, instead of including a specific tsearchXX.c, it includes a generic tsearch.c * Created a generic function 'dwarf_die_text()' to get the attribute value, when its value represents a string, such as DW_AT_name, etc * For backwards compatibility, 'dwarf_diename()' calls 'dwarf_die_text()'
23 lines
658 B
C
23 lines
658 B
C
|
|
/* Nothing here, really, a placeholder. */
|
|
|
|
/* Define to 1 if tsearch is based on the AVL algorithm. */
|
|
/* #define TSEARCH_USE_BAL 1 */
|
|
|
|
/* Define to 1 if tsearch is based on the binary algorithm. */
|
|
/* #define TSEARCH_USE_BIN 1 */
|
|
|
|
/* Define to 1 if tsearch is based on the chepp algorithm. */
|
|
/* #define TSEARCH_USE_EPP 1 */
|
|
|
|
/* Define to 1 if tsearch is based on the hash algorithm. */
|
|
/* #define TSEARCH_USE_HASH 1 */
|
|
#define TSEARCH_USE_HASH 1
|
|
|
|
/* Define to 1 if tsearch is based on the red-black algorithm. */
|
|
/* #define TSEARCH_USE_RED 1 */
|
|
|
|
/* Define 1 if we have the Windows specific header stdafx.h */
|
|
#undef HAVE_STDAFX_H
|
|
#define HAVE_STDAFX_H 1
|