home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / CLIPPER / MISC / EMXLIB8F.ZIP / EMX / LIB / IO / FSOPEN.C < prev    next >
Encoding:
C/C++ Source or Header  |  1993-01-02  |  300 b   |  15 lines

  1. /* fsopen.c (emx+gcc) -- Copyright (c) 1990-1993 by Eberhard Mattes */
  2.  
  3. #include <sys/emx.h>
  4. #include <stdio.h>
  5.  
  6. FILE *_fsopen (const char *fname, const char *mode, int shflag)
  7. {
  8.   FILE *f;
  9.  
  10.   f = _newstream ();
  11.   if (f != NULL)
  12.     f = _fopen (f, fname, mode, shflag);
  13.   return (f);
  14. }
  15.