diff options
author | Tom Schouten <doelie@users.sourceforge.net> | 2006-09-01 13:45:31 +0000 |
---|---|---|
committer | Tom Schouten <doelie@users.sourceforge.net> | 2006-09-01 13:45:31 +0000 |
commit | 7591a024f184bd385d35583d19d86c1d5f2531ba (patch) | |
tree | 77aa0c44ccb700eb9a2b16e1b246e3c8026c40ed /include/pdp_post.h | |
parent | 91dd6b68f0f209ad015a303095bb1df018dca71e (diff) |
pdp current darcs merge
svn path=/trunk/externals/pdp/; revision=5816
Diffstat (limited to 'include/pdp_post.h')
-rw-r--r-- | include/pdp_post.h | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/include/pdp_post.h b/include/pdp_post.h index 05b5143..1054388 100644 --- a/include/pdp_post.h +++ b/include/pdp_post.h @@ -22,8 +22,22 @@ #ifndef _PDP_POST_H_ #define _PDP_POST_H_ +#include <stdarg.h> +#include <m_pd.h> + /* write a message to log (console) */ -void pdp_post_n(char *fmt, ...); -void pdp_post(char *fmt, ...); + +#include <m_pd.h> + +// old +//void pdp_post_n(char *fmt, ...); +//void pdp_post(char *fmt, ...); + +// new +//void startpost(const char *fmt, ...); +//void post(const char *fmt, ...); + +#define pdp_post_n startpost +#define pdp_post post #endif |