mirror of
git://anongit.mindrot.org/openssh.git
synced 2025-01-03 08:12:05 +00:00
3c06f6a0b2
openbsd-compat/. And resolve all ./configure and Makefile.in issues assocated. Logic: * All OpenBSD functions should have the same filename as in the OpenBSD tree * All 'home brew' functions have bsd-* infront of them. * All 'not really implemented' functions have fake-* infront of them.
18 lines
376 B
C
18 lines
376 B
C
#ifndef _BSD_SNPRINTF_H
|
|
#define _BSD_SNPRINTF_H
|
|
|
|
#include "config.h"
|
|
|
|
#include <sys/types.h> /* For size_t */
|
|
|
|
#ifndef HAVE_SNPRINTF
|
|
int snprintf(char *str, size_t count, const char *fmt, ...);
|
|
#endif /* !HAVE_SNPRINTF */
|
|
|
|
#ifndef HAVE_VSNPRINTF
|
|
int vsnprintf(char *str, size_t count, const char *fmt, va_list args);
|
|
#endif /* !HAVE_SNPRINTF */
|
|
|
|
|
|
#endif /* _BSD_SNPRINTF_H */
|