home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programmer 7500
/
MAX_PROGRAMMERS.iso
/
CLIPPER
/
MISC
/
EMXLIB8F.ZIP
/
EMX
/
LIB
/
IO
/
FOPEN.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1993-01-02
|
308 b
|
16 lines
/* fopen.c (emx+gcc) -- Copyright (c) 1990-1993 by Eberhard Mattes */
#include <sys/emx.h>
#include <stdio.h>
#include <share.h>
FILE *fopen (const char *fname, const char *mode)
{
FILE *f;
f = _newstream ();
if (f != NULL)
f = _fopen (f, fname, mode, SH_DENYNO);
return (f);
}