Esempio n. 1
0
void JVMSPI_PrintRaw(const char* s) {
#if ENABLE_PCSL
  pcsl_print(s);
#else
  jvm_printf("%s", s);
  jvm_fflush(stdout);
#endif
}
Esempio n. 2
0
int OsFile_flush(OsFile_Handle handle) {
  return jvm_fflush(handle);
}