pxt-ev3/libs/core/output.cpp
2017-07-11 16:58:51 +02:00

23 lines
272 B
C++

#include "pxt.h"
#include "ev3const.h"
namespace output {
/**
* Create a new zero-initialized buffer.
* @param size number of bytes in the buffer
*/
//%
Buffer createBuffer(int size) {
return mkBuffer(NULL, size);
}
}
namespace pxt {
void target_init() {
}
}