X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fvalue.h;h=b7a7ee701f8ae31f695e35629ca26b562b853842;hb=c90c44ab307b3ba49f606d2bae80e6aff1e228d7;hp=3ea55298cc2e6565eaf4d35ac5e4617e7ac4568c;hpb=43b1296aafe7582e7dbe6c2b6a8b478d7d9b0fcf;p=pspp diff --git a/src/data/value.h b/src/data/value.h index 3ea55298cc..b7a7ee701f 100644 --- a/src/data/value.h +++ b/src/data/value.h @@ -18,9 +18,9 @@ #define value_h 1 #include +#include #include #include "minmax.h" -#include /* Values. */ @@ -33,7 +33,7 @@ /* Special values. */ #define SYSMIS (-DBL_MAX) -#define LOWEST second_lowest_value +#define LOWEST (float_get_lowest ()) #define HIGHEST DBL_MAX /* Number of "union value"s required for a variable of the given @@ -53,6 +53,8 @@ union value }; union value *value_dup (const union value *, int width); +union value *value_create (int width); + int compare_values (const union value *, const union value *, int width); unsigned hash_value (const union value *, int width);