diff options
Diffstat (limited to 'src/include/utils/varbit.h')
-rw-r--r-- | src/include/utils/varbit.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/include/utils/varbit.h b/src/include/utils/varbit.h index 5961bb80a5a..172cb4c6c4d 100644 --- a/src/include/utils/varbit.h +++ b/src/include/utils/varbit.h @@ -5,16 +5,13 @@ #include <math.h> #include <limits.h> -#ifdef HAVE_VALUES_H -#include <values.h> -#endif #include "utils/builtins.h" -#define HEXDIG(z) (z)<10 ? ((z)+'0') : ((z)-10+'A') +#define HEXDIG(z) ((z)<10 ? ((z)+'0') : ((z)-10+'A')) -/* Modeled on struct varlena from postgres.h, bu data type is bits8 */ +/* Modeled on struct varlena from postgres.h, but data type is bits8 */ struct varbita { int32 vl_len; |