From ea9ac7c3b327dc0c69f7c770d26c3372065aa5f1 Mon Sep 17 00:00:00 2001
From: Jonathan McDowell <noodles@earth.li>
Date: Sat, 31 May 2008 17:52:07 +0100
Subject: [PATCH 1/1] Fix some missing #includes

  Clean up some warnings from not including all necessary headers.
---
 decodekey.h | 2 ++
 getcgi.c    | 1 +
 2 files changed, 3 insertions(+)

diff --git a/decodekey.h b/decodekey.h
index 987c3fc..242e8e4 100644
--- a/decodekey.h
+++ b/decodekey.h
@@ -9,6 +9,8 @@
 #ifndef __DECODEKEY_H__
 #define __DECODEKEY_H__
 
+#include <inttypes.h>
+#include <time.h>
 #include "keystructs.h"
 #include "ll.h"
 
diff --git a/getcgi.c b/getcgi.c
index 0080cb3..b15351c 100644
--- a/getcgi.c
+++ b/getcgi.c
@@ -9,6 +9,7 @@
 
 #include <stdio.h>
 #include <string.h>
+#include <strings.h>
 #include <stdlib.h>
 
 #include "getcgi.h"
-- 
2.39.5