Files
barretenberg_cuda/env/logstr.cpp
2024-06-26 06:54:51 +00:00

9 lines
104 B
C++

#include <iostream>
extern "C" {
void logstr(char const* str)
{
std::cerr << str << std::endl;
}
}