/* abi-c.c: pure C99 smoke test locking in the public ABI contract.
 * Compiles higgs.h under -Wall -Werror -pedantic and links against the
 * static lib. Never loads a model; failure means the API regressed. */

#include "higgs.h"

#include <stdio.h>

int main(void) {
    printf("abi-c: %s (abi %d)\n", hg_version(), HG_ABI_VERSION);
    return HG_STATUS_OK;
}
