lisp-take-1/value/integer/struct.h

12 lines
135 B
C

#ifndef STRUCT_INTEGER_VALUE
#define STRUCT_INTEGER_VALUE
#include <stdint.h>
struct integer_value
{
intmax_t value;
};
#endif