Death to varargs.

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@251 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Unknown User d91-jda
1996-02-11 09:05:06 +00:00
parent ffe0fffa39
commit e988c55677
2 changed files with 0 additions and 40 deletions

View File

@@ -11,11 +11,7 @@ static char SccsId[] = "@(#)@(#)pop_log.c 2.1 2.1 3/18/91";
#include <stdio.h>
#include <sys/types.h>
#if __STDC__
#include <stdarg.h>
#else
#include <varargs.h>
#endif
#include "popper.h"
/*
@@ -25,26 +21,10 @@ static char SccsId[] = "@(#)@(#)pop_log.c 2.1 2.1 3/18/91";
static char msgbuf[MAXLINELEN];
int
#ifdef __STDC__
pop_log(POP *p, int stat, char *format, ...)
#else
pop_log(va_alist)
va_dcl
#endif
{
va_list ap;
#ifdef __STDC__
va_start(ap, format);
#else
POP * p;
int stat;
char * format;
va_start(ap);
p = va_arg(ap,POP *);
stat = va_arg(ap,int);
format = va_arg(ap,char *);
#endif
#ifdef HAVE_VSPRINTF
vsprintf(msgbuf,format,ap);

View File

@@ -12,11 +12,7 @@ static char SccsId[] = "@(#)@(#)pop_msg.c 2.1 2.1 3/18/91";
#include <stdio.h>
#include <sys/types.h>
#include <string.h>
#if __STDC__
#include <stdarg.h>
#else
#include <varargs.h>
#endif
#include "popper.h"
/*
@@ -24,28 +20,12 @@ static char SccsId[] = "@(#)@(#)pop_msg.c 2.1 2.1 3/18/91";
*/
int
#ifdef __STDC__
pop_msg(POP *p, int stat, char *format, ...)
#else
pop_msg(va_alist)
va_dcl
#endif
{
register char * mp;
char message[MAXLINELEN];
va_list ap;
#ifdef __STDC__
va_start(ap, format);
#else
POP * p;
int stat; /* POP status indicator */
char * format; /* Format string for the message */
va_start(ap);
p = va_arg(ap, POP *);
stat = va_arg(ap, int);
format = va_arg(ap, char *);
#endif
/* Point to the message buffer */
mp = message;