Changeset 2844 for trunk/src/crtdll/crtdll.cpp
- Timestamp:
- Feb 21, 2000, 11:34:02 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/crtdll/crtdll.cpp
r2618 r2844 1 /* $Id: crtdll.cpp,v 1.2 2 2000-02-03 21:37:48sandervl Exp $ */1 /* $Id: crtdll.cpp,v 1.23 2000-02-21 10:34:01 sandervl Exp $ */ 2 2 3 3 /* … … 45 45 #include <errno.h> 46 46 #include <sys\utime.h> 47 #include <sys\timeb.h> 47 48 #include <sys\stat.h> 48 49 #include "signal.h" … … 981 982 982 983 /********************************************************************* 984 * _fpreset (CRTDLL.107) 985 */ 986 void CDECL CRTDLL__fpreset(void) 987 { 988 dprintf(("CRTDLL: _fpreset\n")); 989 _fpreset(); 990 } 991 992 993 /********************************************************************* 983 994 * _fputchar (CRTDLL.108) 984 995 */ … … 987 998 dprintf2(("CRTDLL: _fputchar\n")); 988 999 return(_fputchar(c)); 1000 } 1001 1002 1003 /********************************************************************* 1004 * _fstat (CRTDLL.111) 1005 */ 1006 int CDECL CRTDLL__fstat(int file, struct stat* buf) 1007 { 1008 dprintf(("CRTDLL: _fstat\n")); 1009 return (_fstat(file, buf)); 1010 } 1011 1012 1013 /********************************************************************* 1014 * _ftime (CRTDLL.112) 1015 */ 1016 void CDECL CRTDLL__ftime( struct timeb *timebuf ) 1017 { 1018 dprintf(("CRTDLL: _ftime\n")); 1019 _ftime(timebuf); 989 1020 } 990 1021 … … 1680 1711 1681 1712 /********************************************************************* 1713 * _sopen (CRTDLL.268) 1714 */ 1715 int CDECL CRTDLL__sopen( const char *s, int i1, int i2, va_list arg ) 1716 { 1717 dprintf(("CRTDLL: _sopen\n")); 1718 return (_sopen(s, i1, i2, arg)); 1719 } 1720 1721 1722 /********************************************************************* 1682 1723 * CRTDLL__spawnl (CRTDLL.269) 1683 1724 */ … … 3099 3140 3100 3141 /********************************************************************* 3142 * ungetc (CRTDLL.492) 3143 */ 3144 INT CDECL CRTDLL_ungetc(int c, FILE *f) 3145 { 3146 dprintf(("CRTDLL: ungetc\n")); 3147 return (ungetc(c, f)); 3148 } 3149 3150 3151 /********************************************************************* 3101 3152 * vfprintf (CRTDLL.494) 3102 3153 */
Note:
See TracChangeset
for help on using the changeset viewer.