diff options
author | Brent Cook <busterb@gmail.com> | 2023-03-26 20:22:22 -0500 |
---|---|---|
committer | Brent Cook <busterb@gmail.com> | 2023-03-26 20:22:22 -0500 |
commit | 190b47b09e63382d9d9bb5b55c48ca0d6c084c17 (patch) | |
tree | ee75d44691b8c11a30b3c284acc2c80ce6b940ff /crypto/bn | |
parent | 9ee3389582333e5b3bc9f3388a6c4a182a8d0a8a (diff) | |
parent | 6501696dd7669b3d20d69beffc508c46f0a807da (diff) | |
download | portable-190b47b09e63382d9d9bb5b55c48ca0d6c084c17.tar.gz portable-190b47b09e63382d9d9bb5b55c48ca0d6c084c17.tar.bz2 portable-190b47b09e63382d9d9bb5b55c48ca0d6c084c17.zip |
Land #829, fix mips/mips64 elf builds
Diffstat (limited to 'crypto/bn')
-rw-r--r-- | crypto/bn/arch/mips/bn_arch.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/crypto/bn/arch/mips/bn_arch.h b/crypto/bn/arch/mips/bn_arch.h new file mode 100644 index 0000000..4d6571f --- /dev/null +++ b/crypto/bn/arch/mips/bn_arch.h | |||
@@ -0,0 +1,24 @@ | |||
1 | /* $OpenBSD: bn_arch.h,v 1.1 2023/01/20 10:04:34 jsing Exp $ */ | ||
2 | /* | ||
3 | * Copyright (c) 2023 Joel Sing <jsing@openbsd.org> | ||
4 | * | ||
5 | * Permission to use, copy, modify, and distribute this software for any | ||
6 | * purpose with or without fee is hereby granted, provided that the above | ||
7 | * copyright notice and this permission notice appear in all copies. | ||
8 | * | ||
9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | ||
10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | ||
11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | ||
12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | ||
13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | ||
14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | ||
15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | ||
16 | */ | ||
17 | |||
18 | #ifndef HEADER_BN_ARCH_H | ||
19 | #define HEADER_BN_ARCH_H | ||
20 | |||
21 | #ifndef OPENSSL_NO_ASM | ||
22 | |||
23 | #endif | ||
24 | #endif | ||