diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2015-10-16 15:15:40 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2015-10-16 15:15:40 +0000 |
commit | 12564d67eff514fd881de50b905ca03521f5101f (patch) | |
tree | 452a5c20cada20a1c47a552fb09e179a2e7a010a /lib/libcrypto/ecdsa/ecs_asn1.c | |
parent | 0306260f8d82981bae6b4529a702b2d75a5ee238 (diff) |
Remove pointless externs - the structs are declared in the same files a
few lines above.
Diffstat (limited to 'lib/libcrypto/ecdsa/ecs_asn1.c')
-rw-r--r-- | lib/libcrypto/ecdsa/ecs_asn1.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/libcrypto/ecdsa/ecs_asn1.c b/lib/libcrypto/ecdsa/ecs_asn1.c index bb543072545..725fe44a367 100644 --- a/lib/libcrypto/ecdsa/ecs_asn1.c +++ b/lib/libcrypto/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) |