File: config.h

package info (click to toggle)
dwarfutils 20201201-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 11,868 kB
  • sloc: ansic: 104,667; sh: 5,947; cpp: 4,675; python: 878; makefile: 646; awk: 11
file content (37 lines) | stat: -rw-r--r-- 1,081 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/* Nothing here, really, a placeholder to enable testing. */

#define HAVE_CONFIG_H 1

/* 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 */

/* Assuming we have stdint.h and it has uintptr_t.
    Not intended to work everywhere, the tsearch
    directory stands a bit outside of libdwarf/dwarfdump.  */
#define HAVE_STDINT_H 1

/* Define 1 if we have the Windows specific header stdafx.h */
#undef HAVE_STDAFX_H

/*  Just for building tsearch independent of
    libdwarf/dwarfdump/dwarfgen. */

#define HAVE_UNUSED_ATTRIBUTE
#ifdef HAVE_UNUSED_ATTRIBUTE
#define  UNUSEDARG __attribute__ ((unused))
#else
#define  UNUSEDARG
#endif