diff options
author | Jung-uk Kim <jkim@FreeBSD.org> | 2020-12-08 18:10:16 +0000 |
---|---|---|
committer | Jung-uk Kim <jkim@FreeBSD.org> | 2020-12-08 18:10:16 +0000 |
commit | 970a464089066970886f0bce6d1c9dcfbcb2e8ea (patch) | |
tree | 655c2eb8197c7c07b52e3246e4f63157f928f13d /crypto/bio/b_addr.c | |
parent | 92f02b3b0f21350e7c92a16ca9b594ad7682c717 (diff) |
Import OpenSSL 1.1.1i.vendor/openssl/1.1.1i
Notes
Notes:
svn path=/vendor-crypto/openssl/dist/; revision=368456
svn path=/vendor-crypto/openssl/1.1.1i/; revision=368457; tag=vendor/openssl/1.1.1i
Diffstat (limited to 'crypto/bio/b_addr.c')
-rw-r--r-- | crypto/bio/b_addr.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/crypto/bio/b_addr.c b/crypto/bio/b_addr.c index d11268b6dc59..b023bbda406b 100644 --- a/crypto/bio/b_addr.c +++ b/crypto/bio/b_addr.c @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. + * Copyright 2016-2020 The OpenSSL Project Authors. All Rights Reserved. * * Licensed under the OpenSSL license (the "License"). You may not use * this file except in compliance with the License. You can obtain a copy @@ -7,6 +7,10 @@ * https://www.openssl.org/source/license.html */ +#ifndef _GNU_SOURCE +# define _GNU_SOURCE +#endif + #include <assert.h> #include <string.h> |