blob: 6f3efe890fd262e4089a51a1d2d39939866d92b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef RVL_SDK_DSP_DEBUG_H
#define RVL_SDK_DSP_DEBUG_H
#include "common.h"
#ifdef __cplusplus
extern "C" {
#endif
void __DSP_debug_printf(const char *fmt, ...);
#ifdef __cplusplus
}
#endif
#endif
|