File: merge_diff_common.c

package info (click to toggle)
cruft 0.9.19
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,476 kB
  • ctags: 101
  • sloc: ansic: 807; perl: 315; sh: 178; makefile: 59
file content (16 lines) | stat: -rw-r--r-- 232 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <stdio.h>
#include <stdarg.h>
#include "merge_diff_common.h"

void cruft_debug(const char *fmt, ...)
{
#if DEBUG_CRUFT > 1
	va_list ap;
	va_start(ap, fmt);
	vfprintf(stderr, fmt, ap);
	va_end(ap);
#else
	fmt=fmt;
#endif
}