mesa: Include compiler.h in hash_table.h.

Include the header for the inline symbol. MSVC does not have the inline
keyword for C.

Signed-off-by: Vinson Lee <vlee@freedesktop.org>
This commit is contained in:
Vinson Lee 2012-11-13 21:18:09 -08:00
parent 186579e724
commit ca5840afb0
1 changed files with 4 additions and 2 deletions

View File

@ -25,11 +25,13 @@
*
*/
#ifndef _HASH_TABLE_H
#define _HASH_TABLE_H
#include <inttypes.h>
#include <stdbool.h>
#ifndef _HASH_TABLE_H
#define _HASH_TABLE_H
#include "compiler.h"
#ifdef __cplusplus
extern "C" {