2
0

bninit32.c 447 B

12345678910111213141516171819
  1. /*
  2. * Copyright (c) 1995 Colin Plumb. All rights reserved.
  3. * For licensing and other legal details, see the file legal.c.
  4. *
  5. * bninit32.c - Provide an init function that sets things up for 32-bit
  6. * operation. This is a seaparate tiny file so you can compile two bn
  7. * packages into the library and write a custom init routine.
  8. *
  9. * Written in 1995 by Colin Plumb.
  10. */
  11. #include "bn.h"
  12. #include "bn32.h"
  13. void
  14. bnInit(void)
  15. {
  16. bnInit_32();
  17. }