aboutsummaryrefslogtreecommitdiff
path: root/src/stdlib/util.h
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-04-15 19:36:23 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-04-15 19:36:23 -0400
commitc3615dc92c667899af7a11b2b25201dad5502ee6 (patch)
treebdc5db2b7c1cda415ef58eabd6c6dd23237d0ad6 /src/stdlib/util.h
parent9c1a7c473d96b80561a845bf15ecfd42cd980135 (diff)
Deprecate `auto`
Diffstat (limited to 'src/stdlib/util.h')
-rw-r--r--src/stdlib/util.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/stdlib/util.h b/src/stdlib/util.h
index 4cb1b375..25cd49f9 100644
--- a/src/stdlib/util.h
+++ b/src/stdlib/util.h
@@ -19,10 +19,6 @@
#define IF_DECLARE(decl, expr, block) if (({ decl; expr ? ({ block; 1; }) : 0; })) {}
-#ifndef auto
-#define auto __auto_type
-#endif
-
#define WHEN(type, subj, var, body) { type var = subj; switch (var.$tag) body }
#ifndef public