mapi: Adding missing string.h include.

File glapi_entrypoint.c calls memcpy() function, but does not include
string.h header. So compilation can fail at error: implicit declaration
of function 'memcpy'.

Signed-off-by: Jose Fonseca <jfonseca@vmware.com>
This commit is contained in:
Pali Rohár
2015-04-23 22:02:07 +01:00
committed by Jose Fonseca
parent 525be9c079
commit 29f0f976bd
+2
View File
@@ -29,6 +29,8 @@
*/
#include <string.h>
#include "c11/threads.h"
#include "glapi/glapi_priv.h"
#include "u_execmem.h"