comparison lwasm/input.h @ 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 d791d47afc48
children
comparison
equal deleted inserted replaced
506:7e8298f7bc0a 507:dd9c5cef2e80
44 { 44 {
45 const char *fn; 45 const char *fn;
46 struct ifl *next; 46 struct ifl *next;
47 }; 47 };
48 48
49 struct ifl *ifl_head; 49 extern struct ifl *ifl_head;
50 50
51 #endif 51 #endif