summaryrefslogtreecommitdiff
path: root/src/ratpoison.h
diff options
context:
space:
mode:
authorsabetts <sabetts>2001-12-21 11:58:56 +0000
committersabetts <sabetts>2001-12-21 11:58:56 +0000
commitb411861a7c307f2f2e520f7c9d51958fc003f0df (patch)
treee73d98b5877d39754260ed163242935ffba76951 /src/ratpoison.h
parent8337770d09d8041ba4c6b676d1fbb5bc7fd6c6a2 (diff)
downloadratpoison-b411861a7c307f2f2e520f7c9d51958fc003f0df.zip
* src/sbuf.h (sbuf_printf_concat): new prototype
(sbuf_printf): likewise * src/sbuf.c (sbuf_printf_concat): new function (sbuf_printf): likewise * src/ratpoison.h: include stdarg.h (xvsprintf): new prototype (xsprintf): likewise * src/main.c (xvsprintf): new function (xsprintf): likewise * src/bar.c: remove include of stdarg.h (marked_message_printf): call xvsprintf.
Diffstat (limited to 'src/ratpoison.h')
-rw-r--r--src/ratpoison.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ratpoison.h b/src/ratpoison.h
index f8c6c53..293e868 100644
--- a/src/ratpoison.h
+++ b/src/ratpoison.h
@@ -28,6 +28,7 @@
#include <stdlib.h>
#include <stdio.h>
+#include <stdarg.h>
#include <X11/Xlib.h>
/* Some error reporting macros */
@@ -68,5 +69,7 @@ void fatal (const char *msg);
void *xmalloc (size_t size);
void *xrealloc (void *ptr, size_t size);
char *xstrdup (char *s);
+char *xsprintf (char *fmt, ...);
+char *xvsprintf (char *fmt, va_list ap);
#endif /* ! _RATPOISON_H */