Ignore:
Timestamp:
Feb 21, 2000, 11:34:02 AM (26 years ago)
Author:
sandervl
Message:

JW: Replaced some stubs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/crtdll/crtdll.cpp

    r2618 r2844  
    1 /* $Id: crtdll.cpp,v 1.22 2000-02-03 21:37:48 sandervl Exp $ */
     1/* $Id: crtdll.cpp,v 1.23 2000-02-21 10:34:01 sandervl Exp $ */
    22
    33/*
     
    4545#include <errno.h>
    4646#include <sys\utime.h>
     47#include <sys\timeb.h>
    4748#include <sys\stat.h>
    4849#include "signal.h"
     
    981982
    982983/*********************************************************************
     984 *      _fpreset                                (CRTDLL.107)
     985 */
     986void CDECL CRTDLL__fpreset(void)
     987{
     988  dprintf(("CRTDLL: _fpreset\n"));
     989  _fpreset();
     990}
     991
     992
     993/*********************************************************************
    983994 *                  _fputchar     (CRTDLL.108)
    984995 */
     
    987998  dprintf2(("CRTDLL: _fputchar\n"));
    988999  return(_fputchar(c));
     1000}
     1001
     1002
     1003/*********************************************************************
     1004 *      _fstat                                  (CRTDLL.111)
     1005 */
     1006int 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 */
     1016void CDECL CRTDLL__ftime( struct timeb *timebuf )
     1017{
     1018  dprintf(("CRTDLL: _ftime\n"));
     1019  _ftime(timebuf);
    9891020}
    9901021
     
    16801711
    16811712/*********************************************************************
     1713 *      _sopen                                  (CRTDLL.268)
     1714 */
     1715int 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/*********************************************************************
    16821723 *           CRTDLL__spawnl      (CRTDLL.269)
    16831724 */
     
    30993140
    31003141/*********************************************************************
     3142 *      ungetc                                  (CRTDLL.492)
     3143 */
     3144INT CDECL CRTDLL_ungetc(int c, FILE *f)
     3145{
     3146  dprintf(("CRTDLL: ungetc\n"));
     3147  return (ungetc(c, f));
     3148}
     3149
     3150
     3151/*********************************************************************
    31013152 *                  vfprintf       (CRTDLL.494)
    31023153 */
Note: See TracChangeset for help on using the changeset viewer.