2
0

bn00.c 577 B

123456789101112131415161718192021222324252627282930
  1. /*
  2. * Copyright (c) 1995 Colin Plumb. All rights reserved.
  3. * For licensing and other legal details, see the file legal.c.
  4. *
  5. * bn00.c - auto-size-detecting bn??.c file.
  6. *
  7. * Written in 1995 by Colin Plumb.
  8. */
  9. #include "bnsize00.h"
  10. #if BNSIZE64
  11. /* Include all of the C source file by reference */
  12. #include "bn64.c"
  13. #include "bninit64.c"
  14. #elif BNSIZE32
  15. /* Include all of the C source file by reference */
  16. #include "bn32.c"
  17. #include "bninit32.c"
  18. #else /* BNSIZE16 */
  19. /* Include all of the C source file by reference */
  20. #include "bn16.c"
  21. #include "bninit16.c"
  22. #endif