From: Nathan Bryant Date: Thu, 6 Sep 2001 05:23:14 +0000 (+0000) Subject: #include fix for glibc 2.1.3 X-Git-Tag: v7.86~6790 X-Git-Url: https://code.citadel.org/?a=commitdiff_plain;ds=sidebyside;h=bcb62770b0176fbcee3f7f2c73febf93247c79e0;p=citadel.git #include fix for glibc 2.1.3 --- diff --git a/citadel/ChangeLog b/citadel/ChangeLog index a4c53b9b7..eba421103 100644 --- a/citadel/ChangeLog +++ b/citadel/ChangeLog @@ -1,4 +1,7 @@ $Log$ + Revision 580.36 2001/09/06 05:23:14 nbryant + #include fix for glibc 2.1.3 + Revision 580.35 2001/09/06 04:02:34 ajc * A few more updates to the networker @@ -2722,3 +2725,4 @@ Sat Jul 11 00:20:48 EDT 1998 Nathan Bryant Fri Jul 10 1998 Art Cancro * Initial CVS import + diff --git a/citadel/sysdep_decls.h b/citadel/sysdep_decls.h index 5113ff355..f5c0febc5 100644 --- a/citadel/sysdep_decls.h +++ b/citadel/sysdep_decls.h @@ -1,6 +1,8 @@ /* $Id$ */ -#include "dynloader.h" +#include +#include "sysdep.h" +#include "server.h" void lprintf (int loglevel, const char *format, ...); void init_sysdep (void);