From de0ef8f938de5c8e7bc58bff2aefb59f7f0b0e97 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Fri, 24 Jun 2016 17:59:38 +0100 Subject: [PATCH] defs.h: void type --- Applications/SmallC/defs.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Applications/SmallC/defs.h b/Applications/SmallC/defs.h index bef33a98..dc28a2cb 100644 --- a/Applications/SmallC/defs.h +++ b/Applications/SmallC/defs.h @@ -78,6 +78,7 @@ struct tag_symbol { #define UCHAR ((1 << 2) + 1) #define CINT (2 << 2) #define UINT ((2 << 2) + 1) +#define VOID (0 << 2) // possible entries for storage #define PUBLIC 1 -- 2.34.1