home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / crypl200.zip / BNLIB / BNINIT64.C < prev    next >
C/C++ Source or Header  |  1996-05-16  |  322b  |  17 lines

  1. /*
  2.  * bninit64.c - Provide an init function that sets things up for 64-bit
  3.  * operation.  This is a seaparate tiny file so you can compile two bn
  4.  * packages into the library and write a custom init routine.
  5.  *
  6.  * Written in 1995 by Colin Plumb.
  7.  */
  8.  
  9. #include "bn.h"
  10. #include "bn64.h"
  11.  
  12. void
  13. bnInit(void)
  14. {
  15.     bnInit_64();
  16. }
  17.