diff options
author | Mike Frysinger <vapier@gentoo.org> | 2008-01-08 19:23:54 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2008-01-08 19:23:54 +0000 |
commit | 3ceb3bcb76545066bad6a85b102944136ca67632 (patch) | |
tree | d8de415d0c9568fb7dc07685902b33684284d9dc /ldso/include | |
parent | 3d61a08a41bd7a0e1df08404c49847f3a8a60a24 (diff) |
change NO_UNDERSCORES to just UNDERSCORES so as to be less confusing when doing double negatives
Diffstat (limited to 'ldso/include')
-rw-r--r-- | ldso/include/dl-defs.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ldso/include/dl-defs.h b/ldso/include/dl-defs.h index 2c4402929..21b9c28f0 100644 --- a/ldso/include/dl-defs.h +++ b/ldso/include/dl-defs.h @@ -202,10 +202,10 @@ typedef struct { # define DL_MALLOC_ALIGN (__WORDSIZE / 8) #endif -#ifdef __UCLIBC_NO_UNDERSCORES__ -#define __C_SYMBOL_PREFIX__ "" +#ifdef __UCLIBC_UNDERSCORES__ +# define __C_SYMBOL_PREFIX__ "_" #else -#define __C_SYMBOL_PREFIX__ "_" +# define __C_SYMBOL_PREFIX__ "" #endif /* Define this if you want to modify the VALUE returned by |