X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fmath%2Fgroup.c;h=29c5ab23db4b7bde28a7c7f2657dba7ede4e8533;hb=74cfe5c070a0810cf43c0981daa53dcea3a8ee3d;hp=13b545f3855399103dc3c52a196c6d2f01c3818a;hpb=9f087e7aa4cdff1d5d46d5e188c0017a9d2d0029;p=pspp-builds.git diff --git a/src/math/group.c b/src/math/group.c index 13b545f3..29c5ab23 100644 --- a/src/math/group.c +++ b/src/math/group.c @@ -29,7 +29,7 @@ /* 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); }