/* fsopen.c (emx+gcc) -- Copyright (c) 1990-1993 by Eberhard Mattes */

#include <sys/emx.h>
#include <stdio.h>

FILE *_fsopen (const char *fname, const char *mode, int shflag)
{
  FILE *f;

  f = _newstream ();
  if (f != NULL)
    f = _fopen (f, fname, mode, shflag);
  return (f);
}
