diff options
| author | Alexander Barton <alex@barton.de> | 2002-05-27 13:00:50 +0000 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2002-05-27 13:00:50 +0000 |
| commit | ba258e65a0fafa444b66f589bc2e3bdc0b42b54c (patch) | |
| tree | 3a428ca51fa2f4145c0c49a77b761a8124e46e14 /src/portab/vsnprintf.c | |
| parent | 1934257636d635b835183466d24714a2ae91bf9c (diff) | |
| download | ngircd-ba258e65a0fafa444b66f589bc2e3bdc0b42b54c.tar.gz ngircd-ba258e65a0fafa444b66f589bc2e3bdc0b42b54c.zip | |
- Anpassungen an pre-ANSI-Compiler.
Diffstat (limited to 'src/portab/vsnprintf.c')
| -rw-r--r-- | src/portab/vsnprintf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/portab/vsnprintf.c b/src/portab/vsnprintf.c index b949b9c6..8cd7b784 100644 --- a/src/portab/vsnprintf.c +++ b/src/portab/vsnprintf.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: vsnprintf.c,v 1.2 2002/05/19 10:44:52 alex Exp $ + * $Id: vsnprintf.c,v 1.3 2002/05/27 13:01:04 alex Exp $ * * vsnprintf.c: u.a. Ersatz fuer vsnprintf() */ @@ -98,7 +98,7 @@ /* only include stdio.h if we are not re-defining snprintf or vsnprintf */ #include <stdio.h> /* make the compiler happy with an empty file */ -void dummy_snprintf(void) {} +void dummy_snprintf PARAMS(( void )) { } #else #ifdef HAVE_LONG_DOUBLE |