Ignore:
Timestamp:
Mar 18, 2000, 4:14:02 PM (25 years ago)
Author:
sandervl
Message:

added _fdopen fs wrapper

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/odincrt/file.cpp

    r2178 r3150  
    1 /* $Id: file.cpp,v 1.1 1999-12-21 12:28:07 sandervl Exp $ */
     1/* $Id: file.cpp,v 1.2 2000-03-18 15:14:02 sandervl Exp $ */
    22/*
    33 * Project Odin Software License can be found in LICENSE.TXT
     
    181181        return rc;
    182182}
     183
     184FILE * _LNK_CONV os2_fdopen( int a, const char *bla)
     185{
     186    unsigned short sel = RestoreOS2FS();
     187    FILE *rc;
     188
     189        rc = _fdopen(a, bla);
     190        return rc;
     191}
     192
Note: See TracChangeset for help on using the changeset viewer.