summaryrefslogtreecommitdiff
path: root/bsd-snprintf.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>1999-11-26 12:21:24 +1100
committerDamien Miller <djm@mindrot.org>1999-11-26 12:21:24 +1100
commit42b81ffe7d1e98b362696076edbc56a66368053e (patch)
tree0c11756e8b9def63760aa59e6d2a195fcc380196 /bsd-snprintf.h
parentbf3f6ef19b8d43b09598807cc30de7e66be37563 (diff)
- Add definition for __P()
- Added [v]snprintf() replacement for systems that lack it
Diffstat (limited to 'bsd-snprintf.h')
-rw-r--r--bsd-snprintf.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/bsd-snprintf.h b/bsd-snprintf.h
new file mode 100644
index 000000000..d4f83aac9
--- /dev/null
+++ b/bsd-snprintf.h
@@ -0,0 +1,17 @@
1#ifndef _BSD_SNPRINTF_H
2#define _BSD_SNPRINTF_H
3
4#include "config.h"
5
6#include <sys/types.h> /* For size_t */
7
8#ifndef HAVE_SNPRINTF
9int snprintf(char *str, size_t n, char const *fmt, ...);
10#endif /* !HAVE_SNPRINTF */
11
12#ifndef HAVE_VSNPRINTF
13int vsnprintf(char *str, size_t n, char *fmt, char *ap);
14#endif /* !HAVE_SNPRINTF */
15
16
17#endif /* _BSD_SNPRINTF_H */