home *** CD-ROM | disk | FTP | other *** search
- /* > C.Message - general message printer */
-
- #include <stdarg.h>
- #include <stdlib.h>
- #include <stdio.h>
- #include "utils.h"
-
- void message (const char *format, ...)
- {
- va_list ap;
- va_start(ap,format);
- vfprintf(stderr,format,ap);
- va_end(ap);
- }
-