util: include stdlib.h in u_string.h to silence MinGW warning

Otherwise we don't get a prototype for malloc().

Reviewed-by: Eric Engestrom <eric.engestrom@imgtec.com>
This commit is contained in:
Brian Paul 2017-10-02 16:33:46 -06:00 committed by Eric Engestrom
parent bf15dc7a1b
commit 2d4b57fc3e

View file

@ -38,6 +38,7 @@
#if !defined(XF86_LIBC_H)
#include <stdio.h>
#endif
#include <stdlib.h>
#include <stddef.h>
#include <stdarg.h>