root/src/runtime/windows_io.cpp

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. halide_print_impl

#include "HalideRuntime.h"

namespace Halide { namespace Runtime { namespace Internal {

WEAK void halide_print_impl(void *user_context, const char *str) {
    write(STDOUT_FILENO, str, strlen(str));
}

}}} // namespace Halide::Runtime::Internal

/* [<][>][^][v][top][bottom][index][help] */