mirror of
https://github.com/edeproject/ede.git
synced 2023-08-10 21:13:03 +03:00
10 lines
124 B
C
10 lines
124 B
C
|
#ifndef _DEBUG_H_
|
||
|
#define _DEBUG_H_
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <stdarg.h>
|
||
|
extern void DBG(const char *str, ...);
|
||
|
|
||
|
#endif
|
||
|
|