84d9c625bf
- Fix for possible unset uid/gid in toproto - Fix for default mtree style - Update libelf - Importing libexecinfo - Resynchronize GCC, mpc, gmp, mpfr - build.sh: Replace params with show-params. This has been done as the make target has been renamed in the same way, while a new target named params has been added. This new target generates a file containing all the parameters, instead of printing it on the console. - Update test48 with new etc/services (Fix by Ben Gras <ben@minix3.org) get getservbyport() out of the inner loop Change-Id: Ie6ad5226fa2621ff9f0dee8782ea48f9443d2091
45 lines
686 B
C
45 lines
686 B
C
#include "config.h"
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#ifdef __STDC__
|
|
#include <stdarg.h>
|
|
#else
|
|
#include <varargs.h>
|
|
#endif
|
|
|
|
/*
|
|
* PUBLIC: #ifndef HAVE_SNPRINTF
|
|
* PUBLIC: int snprintf __P((char *, size_t, const char *, ...));
|
|
* PUBLIC: #endif
|
|
*/
|
|
int
|
|
#ifdef __STDC__
|
|
snprintf(char *str, size_t n, const char *fmt, ...)
|
|
#else
|
|
snprintf(str, n, fmt, va_alist)
|
|
char *str;
|
|
size_t n;
|
|
const char *fmt;
|
|
va_dcl
|
|
#endif
|
|
{
|
|
va_list ap;
|
|
int rval;
|
|
#ifdef __STDC__
|
|
va_start(ap, fmt);
|
|
#else
|
|
va_start(ap);
|
|
#endif
|
|
#ifdef SPRINTF_RET_CHARPNT
|
|
(void)vsprintf(str, fmt, ap);
|
|
va_end(ap);
|
|
return (strlen(str));
|
|
#else
|
|
rval = vsprintf(str, fmt, ap);
|
|
va_end(ap);
|
|
return (rval);
|
|
#endif
|
|
}
|