yeah right

This commit is contained in:
KikooDX 2021-11-19 16:26:18 +01:00
parent a29e1f0cc4
commit 41a1d05969
1 changed files with 2 additions and 2 deletions

View File

@ -34,7 +34,7 @@
#define prim(x) ( (x)->cdr.c )
#define cfunc(x) ( (x)->cdr.f )
#ifdef GINT
#define strbuf(x) ( (char *)&(x) )
#define strbuf(x) ( (char *)&(x)->car )
#else
#define strbuf(x) ( &(x)->car.c + 1 )
#endif
@ -66,7 +66,7 @@ typedef union {
fe_CFunc f;
fe_Number n;
#ifdef GINT
struct { char _[3]; char c };
struct __attribute__((__packed__)) { char _[3]; char c; };
#else
char c;
#endif