aboutsummaryrefslogtreecommitdiff
path: root/src/bsd-snprintf.h
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2002-01-20 11:19:16 (GMT)
committerfluxgen <fluxgen>2002-01-20 11:19:16 (GMT)
commitd55ce44131b544469f8c9b51853e5bf0410d1ee5 (patch)
treee1cee7aac3e989a226db6a17308be779a16f5c3b /src/bsd-snprintf.h
parent90a006e356acc62e0f54fb7378b943f8115b0bb3 (diff)
downloadfluxbox-d55ce44131b544469f8c9b51853e5bf0410d1ee5.zip
fluxbox-d55ce44131b544469f8c9b51853e5bf0410d1ee5.tar.bz2
removed bsd-snprintf.c/.h
Diffstat (limited to 'src/bsd-snprintf.h')
-rw-r--r--src/bsd-snprintf.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/bsd-snprintf.h b/src/bsd-snprintf.h
deleted file mode 100644
index ed7a21c..0000000
--- a/src/bsd-snprintf.h
+++ /dev/null
@@ -1,17 +0,0 @@
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 count, const char *fmt, ...);
10#endif /* !HAVE_SNPRINTF */
11
12#ifndef HAVE_VSNPRINTF
13int vsnprintf(char *str, size_t count, const char *fmt, va_list args);
14#endif /* !HAVE_SNPRINTF */
15
16
17#endif /* _BSD_SNPRINTF_H */