Lines Matching defs:format
298 #define FFATAL(format, ...) zzerr("$" format, __VA_ARGS__)
300 #define XERR(format, ...) zzerr(format, __VA_ARGS__)
343 static void zzerr(char *format, ...)
348 if (format[0] == '$') {
350 format++;
354 va_start(args, format);
355 vfprintf(stderr, format, args);
357 if (format[strlen(format)-1] != '\n') fputc('\n', stderr); // TEMP FIXME !!!
361 else if (!strstr(format, "arning")) TT.cgl.compile_error_count++;
2706 // Do not need format here b/c k is integer, uses "%lld" format.
2707 struct zstring *key = num_to_zstring(k, "");// "" vs 0 format avoids warning
3097 if (len < 0) FATAL("Bad sprintf format");
3132 if (!fmtc) FFATAL("bad printf format '%s'", fmt);
3136 FFATAL("bad printf format <%s>\n", fmt);
3197 FATAL("bad printf format\n");
3245 // TODO FIXME This does not check the format of the variable per posix.
4439 if (!val) error_exit("bad -v assignment format");