From 43059acb95837fce3c8fdf5fc71b96c403e61939 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Fri, 3 Jan 2003 03:24:23 +0000 Subject: Merge from HEAD - add PRINTF_ATTRIBUTE to a few more functions. (This used to be commit 9e5297131cc53d7161aa74566f147b98e1c27aaa) --- source3/include/xfile.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source3/include/xfile.h') diff --git a/source3/include/xfile.h b/source3/include/xfile.h index a573b59a4a..89fa9d1e11 100644 --- a/source3/include/xfile.h +++ b/source3/include/xfile.h @@ -44,4 +44,6 @@ extern XFILE *x_stdin, *x_stdout, *x_stderr; #define x_getc(f) x_fgetc(f) +int x_vfprintf(XFILE *f, const char *format, va_list ap) PRINTF_ATTRIBUTE(2, 0); +int x_fprintf(XFILE *f, const char *format, ...) PRINTF_ATTRIBUTE(2, 3); #endif /* _XFILE_H_ */ -- cgit