X-Git-Url: https://plomlompom.com/repos/foo.html?a=blobdiff_plain;ds=sidebyside;f=src%2Fyx_uint16.c;h=0f4447382e00c268291040f71cf80b623516356f;hb=022f78b4ca5a98999f5e482277b0a317af91f404;hp=4898c4ab6529ef1930754854ea1b4aecfacbd0a7;hpb=a592eadef06988e650ae09de0f9f5abffb482663;p=plomrogue diff --git a/src/yx_uint16.c b/src/yx_uint16.c index 4898c4a..0f44473 100644 --- a/src/yx_uint16.c +++ b/src/yx_uint16.c @@ -2,11 +2,11 @@ -#include "yx_uint16.h" /* for uint16_t */ +#include "yx_uint16.h" /* for uint8_t, uint16_t */ -extern char yx_uint16_cmp(struct yx_uint16 a, struct yx_uint16 b) +extern uint8_t yx_uint16_cmp(struct yx_uint16 a, struct yx_uint16 b) { if (a.y == b.y && a.x == b.x) {