Files
libkeke/libkeke_symbol.c
2026-09-03 21:13:45 -05:00

7 lines
153 B
C

#include "libkeke_symbol.h"
#include <stdint.h>
static _Atomic KekeSymbol iota = KEKE_NULL_SYMBOL + 1;
KekeSymbol keke_new_symbol() { return iota++; }