Sync usage with man page.
[netbsd-mini2440.git] / sys / crypto / blowfish / arch / i386 / bf_enc.S
blob0f74c6b238e902f4982b9031cc3f7c0aab2cb0f9
1 /*      $NetBSD: bf_enc.S,v 1.3 2005/12/11 12:20:52 christos Exp $      */
3 /*
4  * Written by Jason R. Thorpe <thorpej@zembu.com> and Thor Lancelot Simon
5  * <tls@NetBSD.org>.  Public domain.
6  */
8 #include <i386/include/asm.h>
9 __KERNEL_RCSID(0, "$NetBSD$");
12  * XXX Should use CPP symbols defined as a result of
13  * XXX `cc -mcpu=pentiumpro'.
14  */
15 #if defined(I386_CPU) || defined(I486_CPU) || defined(I586_CPU)
16 #include "bf_enc_586.S"
17 #else
18 #include "bf_enc_686.S"
19 #endif