]> the.earth.li Git - onak.git/commitdiff
Fix some missing #includes
authorJonathan McDowell <noodles@earth.li>
Sat, 31 May 2008 16:52:07 +0000 (17:52 +0100)
committerJonathan McDowell <noodles@earth.li>
Sat, 31 May 2008 16:52:07 +0000 (17:52 +0100)
  Clean up some warnings from not including all necessary headers.

decodekey.h
getcgi.c

index 987c3fc7d7c26c51c46c09c5e7bb4f8a07a10b32..242e8e4a341a1f5fbafa5358b1546ca2dea2a521 100644 (file)
@@ -9,6 +9,8 @@
 #ifndef __DECODEKEY_H__
 #define __DECODEKEY_H__
 
+#include <inttypes.h>
+#include <time.h>
 #include "keystructs.h"
 #include "ll.h"
 
index 0080cb3123937dac5a7b6f0f4e0617fb1477f5aa..b15351cc28fc4baee252ec1486d72c73d024a7d2 100644 (file)
--- 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"