Merge branch 'stddef' into 'master'

egl: #include <stddef.h> for `NULL`

See merge request glvnd/libglvnd!215
This commit is contained in:
Eric Engestrom 2019-12-12 23:32:08 +00:00
commit e470308497

View file

@ -108,6 +108,7 @@ def generateSource(functions):
text = ""
text += '#include "egldispatchstubs.h"\n'
text += '#include "g_egldispatchstubs.h"\n'
text += '#include <stddef.h>\n'
text += "\n"
for (func, eglFunc) in functions: