aboutsummaryrefslogtreecommitdiff
path: root/src/stdlib/types.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdlib/types.h')
-rw-r--r--src/stdlib/types.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/stdlib/types.h b/src/stdlib/types.h
index 60f1fcfd..c890f07e 100644
--- a/src/stdlib/types.h
+++ b/src/stdlib/types.h
@@ -78,15 +78,15 @@ struct TypeInfo_s {
};
};
-extern const TypeInfo_t Void$info;
-extern const TypeInfo_t Abort$info;
+extern const TypeInfo_t Voidヽinfo;
+extern const TypeInfo_t Abortヽinfo;
#define Void_t void
-Text_t Type$as_text(const void *typeinfo, bool colorize, const TypeInfo_t *type);
+Text_t Typeヽas_text(const void *typeinfo, bool colorize, const TypeInfo_t *type);
-#define Type$info(typestr) &((TypeInfo_t){.size=sizeof(TypeInfo_t), .align=__alignof__(TypeInfo_t), \
+#define Typeヽinfo(typestr) &((TypeInfo_t){.size=sizeof(TypeInfo_t), .align=__alignof__(TypeInfo_t), \
.tag=TypeInfoInfo, .TypeInfoInfo.type_str=typestr, \
- .metamethods={.serialize=cannot_serialize, .deserialize=cannot_deserialize, .as_text=Type$as_text}})
+ .metamethods={.serialize=cannot_serialize, .deserialize=cannot_deserialize, .as_text=Typeヽas_text}})
#define DEFINE_OPTIONAL_TYPE(t, unpadded_size, name) \
typedef struct { \