Lines Matching defs:format
43 note(const char *format, ...)
51 va_start(ap, format);
52 (void) vfprintf(stdout, format, ap);
57 vwarn(const char *format, va_list ap)
63 if (format != NULL)
64 (void) vfprintf(stderr, format, ap);
68 if (format == NULL)
70 else if (strchr(format, '\n') == NULL)
76 warn(const char *format, ...)
80 va_start(ap, format);
81 vwarn(format, ap);
87 die(const char *format, ...)
91 va_start(ap, format);
92 vwarn(format, ap);