summaryrefslogtreecommitdiff
path: root/mpi/longlong.h
diff options
context:
space:
mode:
authorMoritz Schulte <mo@g10code.com>2003-07-30 11:39:15 +0000
committerMoritz Schulte <mo@g10code.com>2003-07-30 11:39:15 +0000
commite736639cd79f71e9c4122c76b57e309ddd8f292a (patch)
tree3c95cc18e0c4b923955e876a3d0da89b3fa6780a /mpi/longlong.h
parentd1ec9c814296cd8e595519565a28c5471b232061 (diff)
downloadlibgcrypt-e736639cd79f71e9c4122c76b57e309ddd8f292a.tar.gz
2003-07-30 Moritz Schulte <moritz@g10code.com>
* longlong.h (__clz_tab): Renamed to _gcry_clz_tab. * mpi-bit.c (__clz_tab): Likewise.
Diffstat (limited to 'mpi/longlong.h')
-rw-r--r--mpi/longlong.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/mpi/longlong.h b/mpi/longlong.h
index b0e8e972..95572c85 100644
--- a/mpi/longlong.h
+++ b/mpi/longlong.h
@@ -1461,7 +1461,7 @@ extern
#ifdef __STDC__
const
#endif
-unsigned char __clz_tab[];
+unsigned char _gcry_clz_tab[];
#define MPI_INTERNAL_NEED_CLZ_TAB 1
#define count_leading_zeros(count, x) \
do { \
@@ -1481,7 +1481,7 @@ unsigned char __clz_tab[];
break; \
} \
\
- (count) = W_TYPE_SIZE - (__clz_tab[__xr >> __a] + __a); \
+ (count) = W_TYPE_SIZE - (_gcry_clz_tab[__xr >> __a] + __a); \
} while (0)
/* This version gives a well-defined value for zero. */
#define COUNT_LEADING_ZEROS_0 W_TYPE_SIZE