packages feed

kempe-0.2.0.8: test/harness/bool.c

#include <stdbool.h>
#include <stdio.h>

extern bool not(bool);
extern bool eq(bool, bool);

int main(int argc, char *argv[]) {
    printf("%d\n", not(true));
    printf("%d\n", not(false));
    printf("%d", eq(true, false));
}