Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
bgColor#ccccff
langc
#include <stdio.h>
 
int close_stdout(void) {
  if (fclose(stdout) != 0) {
    return -1;
  }

 
  fprintf(stderr, "stdout successfully closed.\n");
  return 0;
}

...