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

13 lines
207 B
C

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