Changeset 2156 for trunk/src


Ignore:
Timestamp:
Dec 20, 1999, 12:09:41 PM (26 years ago)
Author:
sandervl
Message:

Added bsearch from EMX and corrected it's calling convention

Location:
trunk/src/crtdll
Files:
1 added
2 edited

Legend:

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

    r1160 r2156  
    1 ; $Id: crtdll.def,v 1.8 1999-10-07 09:28:48 sandervl Exp $
     1; $Id: crtdll.def,v 1.9 1999-12-20 11:09:41 sandervl Exp $
    22
    33;Created by BLAST for IBM's compiler
     
    449449    atoi                        = NTDLL_atoi                    @344
    450450    atol                        = NTDLL_atol                    @345
    451     bsearch                     = _CRTDLL_bsearch               @346
     451    bsearch                     = _bsearch                                                      @346
    452452    calloc                      = _CRTDLL_calloc                @347
    453453    ceil                        = NTDLL_ceil                    @348
  • trunk/src/crtdll/makefile

    r1585 r2156  
    1 # $Id: makefile,v 1.3 1999-11-03 23:28:04 sandervl Exp $
     1# $Id: makefile,v 1.4 1999-12-20 11:09:41 sandervl Exp $
    22
    33#
     
    1616
    1717
    18 CFLAGS = $(CFLAGS) -I$(PDWIN32_INCLUDE)
     18CFLAGS = $(CFLAGS) -I$(PDWIN32_INCLUDE) 
    1919CXXFLAGS = $(CXXFLAGS) -I$(PDWIN32_INCLUDE)
    2020
     
    2222TARGET = crtdll
    2323
    24 OBJS =  crtdll.obj initterm.obj
     24OBJS =  crtdll.obj bsearch.obj initterm.obj
    2525
    2626all: $(TARGET).dll $(TARGET).lib
     
    4141initterm.obj: initterm.cpp
    4242crtdll.obj: crtdll.cpp
     43bsearch.obj: bsearch.c
    4344
    4445clean:
    45         $(RM) *.obj *.lib *.dll *~ *.map *.pch
     46        $(RM) *.obj *.lib *.dll *.map *.pch
    4647        $(RM) $(PDWIN32_BIN)\$(TARGET).dll
    4748        $(RM) $(PDWIN32_LIB)\$(TARGET).lib
Note: See TracChangeset for help on using the changeset viewer.