print.c 129 B

12345678910111213
  1. /*
  2. * example library
  3. */
  4. #include <stdio.h>
  5. int stderr_println(char* text)
  6. {
  7. fprintf(stderr, "%s\n", text);
  8. return 0;
  9. }