changeset 507:dd9c5cef2e80

Fix missing extern declaration Variable declarations in headers need to be "extern". Fix missing "extern" in input.h. (Turns it it was there previously and was erroneously removed in a previous clean up patch.) Thank you to John W. Linville <linville@redhat.com> for reporting the problem.
author William Astle <lost@l-w.ca>
date Thu, 06 Feb 2020 15:04:05 -0700
parents 7e8298f7bc0a
children 10f62dc61a75
files lwasm/input.h
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lwasm/input.h	Sun Oct 27 12:06:01 2019 -0600
+++ b/lwasm/input.h	Thu Feb 06 15:04:05 2020 -0700
@@ -46,6 +46,6 @@
 	struct ifl *next;
 };
 
-struct ifl *ifl_head;
+extern struct ifl *ifl_head;
 
 #endif