about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2001-12-31 03:06:03 +0000
committerAlexander Barton <alex@barton.de>2001-12-31 03:06:03 +0000
commitcc18008b6c78d82991803a451430d22baa26ec51 (patch)
tree62cbe4ee9531d971f5afa629ebb16b49ee177d45 /src
parent3a8efe9a595dce7c3b598ae153e08fb1f337243a (diff)
downloadngircd-cc18008b6c78d82991803a451430d22baa26ec51.tar.gz
ngircd-cc18008b6c78d82991803a451430d22baa26ec51.zip
- das #include fuer time.h hat noch gefehlt.
Diffstat (limited to 'src')
-rw-r--r--src/ngircd/ngircd.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/ngircd/ngircd.h b/src/ngircd/ngircd.h
index 38162c93..35849c6a 100644
--- a/src/ngircd/ngircd.h
+++ b/src/ngircd/ngircd.h
@@ -9,11 +9,14 @@
  * Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste
  * der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS.
  *
- * $Id: ngircd.h,v 1.4 2001/12/31 02:18:51 alex Exp $
+ * $Id: ngircd.h,v 1.5 2001/12/31 03:06:03 alex Exp $
  *
  * ngircd.h: Prototypen aus dem "Haupt-Modul"
  *
  * $Log: ngircd.h,v $
+ * Revision 1.5  2001/12/31 03:06:03  alex
+ * - das #include fuer time.h hat noch gefehlt.
+ *
  * Revision 1.4  2001/12/31 02:18:51  alex
  * - viele neue Befehle (WHOIS, ISON, OPER, DIE, RESTART),
  * - neuen Header "defines.h" mit (fast) allen Konstanten.
@@ -33,6 +36,8 @@
 #ifndef __ngircd_h__
 #define __ngircd_h__
 
+#include <time.h>
+
 
 GLOBAL time_t NGIRCd_Start;		/* Startzeitpunkt des Daemon */
 GLOBAL CHAR NGIRCd_StartStr[64];