X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fmath%2Fgroup.c;h=29c5ab23db4b7bde28a7c7f2657dba7ede4e8533;hb=bd00412ff6cf29cf3b7744bf1045f53122eb46f7;hp=154e6f882ffd7341693a6590a3932eb990b111ce;hpb=43b1296aafe7582e7dbe6c2b6a8b478d7d9b0fcf;p=pspp-builds.git diff --git a/src/math/group.c b/src/math/group.c index 154e6f88..29c5ab23 100644 --- a/src/math/group.c +++ b/src/math/group.c @@ -16,7 +16,6 @@ #include #include -#include #include #include #include "group.h" @@ -25,11 +24,12 @@ #include #include +#include "xalloc.h" /* Return -1 if the id of a is less than b; +1 if greater than and 0 if equal */ int -compare_group(const struct group_statistics *a, +compare_group (const struct group_statistics *a, const struct group_statistics *b, int width) { @@ -39,7 +39,7 @@ compare_group(const struct group_statistics *a, unsigned -hash_group(const struct group_statistics *g, int width) +hash_group (const struct group_statistics *g, int width) { unsigned id_hash; @@ -50,7 +50,7 @@ hash_group(const struct group_statistics *g, int width) void -free_group(struct group_statistics *v, void *aux UNUSED) +free_group (struct group_statistics *v, void *aux UNUSED) { free(v); }