X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fval.h;h=c4b96b1ae14a377e0a1700606518051ef8be8c80;hb=05e356b2a3087e819ef3b5388e29c822f41502e1;hp=fc098fda975af76ed6559255f371961ab212a1d1;hpb=0a2cdacebb16d9a13c1b382c5ffa29e32cf858ea;p=pspp diff --git a/src/val.h b/src/val.h index fc098fda97..c4b96b1ae1 100644 --- a/src/val.h +++ b/src/val.h @@ -21,6 +21,7 @@ #define val_h 1 #include +#include "config.h" /* Values. */ @@ -35,8 +36,8 @@ then short string missing values can be truncated in system files because there's only room for as many characters as can fit in a flt64. */ -#if MAX_SHORT_STRING > 8 -#error MAX_SHORT_STRING must be less than 8. +#if MAX_SHORT_STRING > SHORT_NAME_LEN +#error MAX_SHORT_STRING must be less than or equal to SHORT_NAME_LEN. #endif /* Special values. */ @@ -72,4 +73,5 @@ int compare_values (const union value *a, const union value *b, int width); unsigned hash_value(const union value *v, int width); + #endif /* !val_h */