aboutsummaryrefslogtreecommitdiff
path: root/sys/cmd/cc/cc.h
diff options
context:
space:
mode:
authorNicholas Noll <nbnoll@eml.cc>2020-05-20 12:22:30 -0700
committerNicholas Noll <nbnoll@eml.cc>2020-05-20 12:22:30 -0700
commit6ea22d950fd7246c9159a3601819ae23d03e8dcd (patch)
tree483f6df6536ec6e81913641a405d7a6ae3ffefa4 /sys/cmd/cc/cc.h
parent57eb0c15a10dfcd9816b84166106a1aa32323325 (diff)
fix: truncate infinite recursion caused by self referential macros
Diffstat (limited to 'sys/cmd/cc/cc.h')
-rw-r--r--sys/cmd/cc/cc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/cmd/cc/cc.h b/sys/cmd/cc/cc.h
index 6ed2caa..685dce2 100644
--- a/sys/cmd/cc/cc.h
+++ b/sys/cmd/cc/cc.h
@@ -388,7 +388,7 @@ struct Io
/* cc.c io functions */
Io* openio(byte *path);
-Io* makeio();
+Io* makeio(byte *name);
void freeio(Io *io);
struct StrTab