diff options
author | 2015-10-16 15:15:39 +0000 | |
---|---|---|
committer | 2015-10-16 15:15:39 +0000 | |
commit | 8cf94abf37b701f0cd695afda663bf9c1750206c (patch) | |
tree | b77840063a868e55be16c2440ba19ac1c54a0366 /lib/libssl/src/crypto/ecdsa | |
parent | Expand DECLARE_ASN1_ALLOC_FUNCTIONS and DECLARE_ASN1_FUNCTIONS_const (diff) | |
download | wireguard-openbsd-8cf94abf37b701f0cd695afda663bf9c1750206c.tar.xz wireguard-openbsd-8cf94abf37b701f0cd695afda663bf9c1750206c.zip |
Remove pointless externs - the structs are declared in the same files a
few lines above.
Diffstat (limited to 'lib/libssl/src/crypto/ecdsa')
-rw-r--r-- | lib/libssl/src/crypto/ecdsa/ecs_asn1.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/libssl/src/crypto/ecdsa/ecs_asn1.c b/lib/libssl/src/crypto/ecdsa/ecs_asn1.c index bb543072545..725fe44a367 100644 --- a/lib/libssl/src/crypto/ecdsa/ecs_asn1.c +++ b/lib/libssl/src/crypto/ecdsa/ecs_asn1.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ecs_asn1.c,v 1.7 2015/10/16 15:12:30 jsing Exp $ */ +/* $OpenBSD: ecs_asn1.c,v 1.8 2015/10/16 15:15:39 jsing Exp $ */ /* ==================================================================== * Copyright (c) 2000-2002 The OpenSSL Project. All rights reserved. * @@ -88,7 +88,6 @@ ECDSA_SIG *ECDSA_SIG_new(void); void ECDSA_SIG_free(ECDSA_SIG *a); ECDSA_SIG *d2i_ECDSA_SIG(ECDSA_SIG **a, const unsigned char **in, long len); int i2d_ECDSA_SIG(const ECDSA_SIG *a, unsigned char **out); -extern const ASN1_ITEM ECDSA_SIG_it; ECDSA_SIG * d2i_ECDSA_SIG(ECDSA_SIG **a, const unsigned char **in, long len) |