aboutsummaryrefslogtreecommitdiff
path: root/src/common.hff
diff options
context:
space:
mode:
Diffstat (limited to 'src/common.hff')
-rw-r--r--src/common.hff5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/common.hff b/src/common.hff
index 6b63334..a54fd32 100644
--- a/src/common.hff
+++ b/src/common.hff
@@ -38,11 +38,6 @@ defmacro foreach_ptr(x, i, a, &body) [
defmacro streq(a,b) [ (strcmp(a,b) == 0) ]
defmacro strcieq(a,b) [ (strcasecmp(a,b) == 0) ]
-defmacro coalesce(a,b) [
- (do let $x = a;
- $x ? $x : b; )
-]
-
defmacro with_tmpchange(var,x,&body) [
{ let $tmp = (var);
(var) = x;