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

  1. /*
  2.  * lbn00.c - auto-size-detecting lbn??.c file.
  3.  *
  4.  * Written in 1995 by Colin Plumb.
  5.  */
  6.  
  7. #include "bnsize00.h"
  8.  
  9. #if BNSIZE64
  10.  
  11. /* Include all of the C source file by reference */
  12. #include "lbn64.c"
  13.  
  14. #elif BNSIZE32
  15.  
  16. /* Include all of the C source file by reference */
  17. #include "lbn32.c"
  18.  
  19. #else /* BNSIZE16 */
  20.  
  21. /* Include all of the C source file by reference */
  22. #include "lbn16.c"
  23.  
  24. #endif
  25.