summaryrefslogtreecommitdiff
path: root/src/gib_hash.c
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2018-01-29 21:01:03 +0100
committerDaniel Friesel <derf@finalrewind.org>2018-01-29 21:01:03 +0100
commitfe8ce5419da5f08e0923e759753b75edc53906b3 (patch)
treec6cf2daa40e5731b9d752ddc17585724886fd7eb /src/gib_hash.c
parentc4a98974bece64c5ae6e224151e92e807d5ac271 (diff)
Include system headers before local ones to fix type conflict on OpenBSD
Diffstat (limited to 'src/gib_hash.c')
-rw-r--r--src/gib_hash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gib_hash.c b/src/gib_hash.c
index 15bbf4a..0d6a226 100644
--- a/src/gib_hash.c
+++ b/src/gib_hash.c
@@ -22,11 +22,11 @@ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
+#include <strings.h>
#include "gib_hash.h"
#include "utils.h"
#include "debug.h"
-#include <strings.h>
gib_hash_node *gib_hash_node_new(char *key, void *data)
{