home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c082_122 / 1.ddi / WINLBSRC.ZIP / WREALCVT.ASM < prev    next >
Encoding:
Assembly Source File  |  1992-06-10  |  694 b   |  28 lines

  1. ;[]-----------------------------------------------------------------[]
  2. ;|      REALCVT.ASM -- Real number conversion routine                |
  3. ;[]-----------------------------------------------------------------[]
  4.  
  5. ;
  6. ;       C/C++ Run Time Library - Version 5.0
  7. ;       Copyright (c) 1987, 1992 by Borland International
  8. ;       All Rights Reserved.
  9.  
  10.         INCLUDE RULES.ASI
  11.         %MACS
  12.  
  13. ;       External References
  14.  
  15. ;ExtSym@        _cvtfak, ABS, __CDECL__
  16. extrn           __RealCvtVector:word
  17.  
  18. _TEXT   SEGMENT
  19.  
  20.                 public __REALCVT
  21. __REALCVT       proc near
  22.                 jmp     [__RealCvtVector]
  23.                 endp
  24. _TEXT   ENDS
  25.         END
  26.