pxt-ev3/libs/core/pxtcore.h
2017-07-10 11:42:30 +01:00

10 lines
126 B
C++

#ifndef __PXTCORE_H
#define __PXTCORE_H
namespace pxt {
void dmesg(const char *fmt, ...);
#define DMESG pxt::dmesg
}
#endif