diff options
author | Andrew Tridgell <tridge@samba.org> | 2001-09-08 02:59:23 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2001-09-08 02:59:23 +0000 |
commit | 65c5a1c0ba2cc3dc8e45a499c42191016e658b20 (patch) | |
tree | 1bd17f1ae9a43d176983b3e1738ff296ec692822 /source3/include | |
parent | ed8883c5ddb9c3709bf2f842ae7522f2e09110ff (diff) | |
download | samba-65c5a1c0ba2cc3dc8e45a499c42191016e658b20.tar.gz samba-65c5a1c0ba2cc3dc8e45a499c42191016e658b20.tar.bz2 samba-65c5a1c0ba2cc3dc8e45a499c42191016e658b20.zip |
convert more code to using d_printf
(This used to be commit 60d297303488ed583537ca2853828fccd6da2ade)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/includes.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/include/includes.h b/source3/include/includes.h index b29759540f..98580c3626 100644 --- a/source3/include/includes.h +++ b/source3/include/includes.h @@ -1009,6 +1009,8 @@ extern int DEBUGLEVEL; /* add varargs prototypes with printf checking */ int fdprintf(int , char *, ...) PRINTF_ATTRIBUTE(2,3); +int d_printf(char *, ...) PRINTF_ATTRIBUTE(1,2); +int d_fprintf(FILE *f, char *, ...) PRINTF_ATTRIBUTE(2,3); #ifndef HAVE_SNPRINTF_DECL int snprintf(char *,size_t ,const char *, ...) PRINTF_ATTRIBUTE(3,4); #endif |