10 lines
126 B
C++
10 lines
126 B
C++
#ifndef __PXTCORE_H
|
|
#define __PXTCORE_H
|
|
|
|
namespace pxt {
|
|
void dmesg(const char *fmt, ...);
|
|
#define DMESG pxt::dmesg
|
|
}
|
|
|
|
#endif
|