https://www.illumos.org/issues/16793

--- "meson-1.7.2/test cases/common/103 has header symbol/meson.build.orig"
+++ "meson-1.7.2/test cases/common/103 has header symbol/meson.build"
@@ -16,7 +16,6 @@
   assert (comp.has_header_symbol('stdio.h', 'FILE'), 'FILE structure not found')
   assert (comp.has_header_symbol('limits.h', 'INT_MAX'), 'INT_MAX define not found')
   assert (not comp.has_header_symbol('limits.h', 'guint64'), 'guint64 is not defined in limits.h')
-  assert (not comp.has_header_symbol('stdlib.h', 'FILE'), 'FILE structure is defined in stdio.h, not stdlib.h')
   assert (not comp.has_header_symbol('stdlol.h', 'printf'), 'stdlol.h shouldn\'t exist')
   assert (not comp.has_header_symbol('stdlol.h', 'int'), 'shouldn\'t be able to find "int" with invalid header')
 endforeach