diff options
| author | Alexander Barton <alex@barton.de> | 2002-01-01 18:25:44 +0000 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2002-01-01 18:25:44 +0000 |
| commit | b20fa7c6e63115963be462ba9cb60b0cbc654ede (patch) | |
| tree | f5a3b1f057543b1182e38fe6394003772f814f75 /src | |
| parent | 71939cf513d13c77e8f91fa0da84808014e30825 (diff) | |
| download | ngircd-b20fa7c6e63115963be462ba9cb60b0cbc654ede.tar.gz ngircd-b20fa7c6e63115963be462ba9cb60b0cbc654ede.zip | |
- #include's fuer stdlib.h ergaenzt.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ngircd/client.c | 6 | ||||
| -rw-r--r-- | src/ngircd/conf.c | 6 | ||||
| -rw-r--r-- | src/ngircd/conn.c | 6 |
3 files changed, 15 insertions, 3 deletions
diff --git a/src/ngircd/client.c b/src/ngircd/client.c index 0ef82662..1f87b269 100644 --- a/src/ngircd/client.c +++ b/src/ngircd/client.c @@ -9,7 +9,7 @@ * Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste * der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS. * - * $Id: client.c,v 1.15 2001/12/31 15:33:13 alex Exp $ + * $Id: client.c,v 1.16 2002/01/01 18:25:44 alex Exp $ * * client.c: Management aller Clients * @@ -21,6 +21,9 @@ * Server gewesen, so existiert eine entsprechende CONNECTION-Struktur. * * $Log: client.c,v $ + * Revision 1.16 2002/01/01 18:25:44 alex + * - #include's fuer stdlib.h ergaenzt. + * * Revision 1.15 2001/12/31 15:33:13 alex * - neuer Befehl NAMES, kleinere Bugfixes. * - Bug bei PING behoben: war zu restriktiv implementiert :-) @@ -79,6 +82,7 @@ #include <assert.h> #include <unistd.h> #include <stdio.h> +#include <stdlib.h> #include <string.h> #include <netdb.h> diff --git a/src/ngircd/conf.c b/src/ngircd/conf.c index af283c0d..5589e021 100644 --- a/src/ngircd/conf.c +++ b/src/ngircd/conf.c @@ -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: conf.c,v 1.6 2001/12/31 02:18:51 alex Exp $ + * $Id: conf.c,v 1.7 2002/01/01 18:25:44 alex Exp $ * * conf.h: Konfiguration des ngircd * * $Log: conf.c,v $ + * Revision 1.7 2002/01/01 18:25:44 alex + * - #include's fuer stdlib.h ergaenzt. + * * Revision 1.6 2001/12/31 02:18:51 alex * - viele neue Befehle (WHOIS, ISON, OPER, DIE, RESTART), * - neuen Header "defines.h" mit (fast) allen Konstanten. @@ -43,6 +46,7 @@ #include <assert.h> #include <errno.h> #include <stdio.h> +#include <stdlib.h> #include <string.h> #include "client.h" diff --git a/src/ngircd/conn.c b/src/ngircd/conn.c index da9eb92c..95e87885 100644 --- a/src/ngircd/conn.c +++ b/src/ngircd/conn.c @@ -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: conn.c,v 1.23 2001/12/31 02:18:51 alex Exp $ + * $Id: conn.c,v 1.24 2002/01/01 18:25:44 alex Exp $ * * connect.h: Verwaltung aller Netz-Verbindungen ("connections") * * $Log: conn.c,v $ + * Revision 1.24 2002/01/01 18:25:44 alex + * - #include's fuer stdlib.h ergaenzt. + * * Revision 1.23 2001/12/31 02:18:51 alex * - viele neue Befehle (WHOIS, ISON, OPER, DIE, RESTART), * - neuen Header "defines.h" mit (fast) allen Konstanten. @@ -104,6 +107,7 @@ #include <assert.h> #include <stdarg.h> #include <stdio.h> +#include <stdlib.h> #include <unistd.h> #include <errno.h> #include <fcntl.h> |