Subversion Repositories Kolibri OS

Rev

Rev 8793 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. #include "stddef.h"
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4.  
  5. int fclose(FILE *stream) {
  6.         free(stream);
  7.         stream = NULL;
  8.         return 0;
  9. }
  10.