blob: ef86da0aa684aa925587c3f5ca94f43aaf7215ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef DSP_DEBUG_H
#define DSP_DEBUG_H
#ifdef __cplusplus
extern "C" {
#endif
void __DSP_debug_printf(const char* fmt, ...);
#ifdef __cplusplus
}
#endif
#endif /* DSP_DEBUG_H */
|