13 lines
191 B
C
13 lines
191 B
C
#ifndef _BUILTIN_FLOAT_H_
|
|
#define _BUILTIN_FLOAT_H_
|
|
|
|
#include <mie/attribute/attribute.h>
|
|
#include <mie/type/type.h>
|
|
|
|
struct float_type {
|
|
struct mie_type f_base;
|
|
size_t f_width;
|
|
};
|
|
|
|
#endif
|