lisp-take-1/value/boolean/compare.c

13 lines
204 B
C

#include <assert.h>
#include <debug.h>
#include "compare.h"
int compare_boolean_values(
const struct value* a __attribute((unused)),
const struct value* b __attribute((unused)))
{
TODO;
}