mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-libstb-hal.git
synced 2025-08-27 23:42:43 +02:00
Origin commit data
------------------
Branch: master
Commit: b5503037f0
Author: Stefan Seyfried <seife@tuxbox-git.slipkontur.de>
Date: 2010-08-08 (Sun, 08 Aug 2010)
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
19 lines
247 B
C++
19 lines
247 B
C++
/* libtriple debug functions */
|
|
|
|
#include <stdarg.h>
|
|
#include <stdio.h>
|
|
|
|
int cnxt_debug = 0;
|
|
|
|
void lt_debug(const char *fmt, ...)
|
|
{
|
|
if (! cnxt_debug)
|
|
return;
|
|
|
|
va_list args;
|
|
va_start(args, fmt);
|
|
vfprintf(stderr, fmt, args);
|
|
va_end(args);
|
|
}
|
|
|