Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | RSS feed

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. FILE *fopen(const char *restrict _name, const char *restrict _mode) {
  5.     FILE *out = malloc(sizeof(FILE));
  6.     return freopen(_name, _mode, out);
  7. }
  8.