From 2a9257c652dcd2d6d501fc2e0c0ce115978430e7 Mon Sep 17 00:00:00 2001 From: Elizabeth Myers Date: Sat, 19 Mar 2016 15:58:30 -0500 Subject: [PATCH] rb_dictionary: add include needed for int types. --- librb/include/rb_dictionary.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/librb/include/rb_dictionary.h b/librb/include/rb_dictionary.h index 8008f9324..88774dd6f 100644 --- a/librb/include/rb_dictionary.h +++ b/librb/include/rb_dictionary.h @@ -25,6 +25,8 @@ #ifndef __RB_DICTIONARY_H__ #define __RB_DICTIONARY_H__ +#include "librb-config.h" + struct Dictionary; /* defined in src/dictionary.c */ typedef int (*DCF)(/* const void *a, const void *b */);