Oh who gives a fuck?

This commit is contained in:
Mid
2024-02-13 21:33:49 +02:00
parent 83e0771f2c
commit a1077f7c03
12 changed files with 447 additions and 32 deletions

View File

@@ -22,7 +22,7 @@ Type *primitive_parse(const char *src) {
TypePrimitive *ret = malloc(sizeof(*ret));
ret->type = TYPE_TYPE_PRIMITIVE;
ret->src = src;
ret->src = strdup(src);
if(*src == 'n') {
src++;