12 lines
135 B
C
12 lines
135 B
C
|
|
#ifndef STRUCT_INTEGER_VALUE
|
|
#define STRUCT_INTEGER_VALUE
|
|
|
|
#include <stdint.h>
|
|
|
|
struct integer_value
|
|
{
|
|
intmax_t value;
|
|
};
|
|
|
|
#endif
|