#include "game_types.h"

/* SWI_Compare @ 0x08019E14 (real 18B) -- SVC 0xAB service 19 with zero second arg. Mirrors src/matched/SWI_Compare.c. */
/* Issues SVC 0xAB service 19 with a zero second arg (r4 admittedly saved
   for the redundant-move shape); returns the result. */
extern int SWI_AB(int service, int zero); /* swi #0xab */

int SWI_Compare(void)
{
    return SWI_AB(19, 0);
}
