Use "" not <> for internal/ includes
authorRich Salz <rsalz@openssl.org>
Tue, 22 Aug 2017 12:35:43 +0000 (08:35 -0400)
committerRich Salz <rsalz@openssl.org>
Tue, 22 Aug 2017 13:54:20 +0000 (09:54 -0400)
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/4217)

79 files changed:
crypto/asn1/bio_asn1.c
crypto/async/async.c
crypto/async/async_locl.h
crypto/bio/b_addr.c
crypto/bio/bio_lcl.h
crypto/bio/bio_meth.c
crypto/bn/bn_srp.c
crypto/conf/conf_lib.c
crypto/conf/conf_sap.c
crypto/engine/eng_int.h
crypto/engine/eng_openssl.c
crypto/engine/eng_rdrand.c
crypto/err/err.c
crypto/evp/c_allc.c
crypto/evp/c_alld.c
crypto/evp/e_rc5.c
crypto/evp/names.c
crypto/evp/pbe_scrypt.c
crypto/init.c
crypto/objects/o_names.c
crypto/x509/x509_vfy.c
e_os.h
include/internal/dso.h
test/asn1_internal_test.c
test/asn1_time_test.c
test/bad_dtls_test.c
test/bftest.c
test/bntest.c
test/casttest.c
test/cipher_overhead_test.c
test/cipherbytes_test.c
test/cipherlist_test.c
test/ciphername_test.c
test/constant_time_test.c
test/crltest.c
test/d2i_test.c
test/danetest.c
test/dhtest.c
test/drbgtest.c
test/dsatest.c
test/dtlsv1listentest.c
test/ecstresstest.c
test/ectest.c
test/evp_extra_test.c
test/exptest.c
test/handshake_helper.c
test/hmactest.c
test/ideatest.c
test/igetest.c
test/lhash_test.c
test/md2test.c
test/mdc2_internal_test.c
test/mdc2test.c
test/modes_internal_test.c
test/poly1305_internal_test.c
test/rc2test.c
test/rc4test.c
test/rc5test.c
test/rsa_test.c
test/sanitytest.c
test/servername_test.c
test/siphash_internal_test.c
test/ssl_cert_table_internal_test.c
test/ssl_test_ctx.c
test/ssl_test_ctx_test.c
test/sslapitest.c
test/ssltest_old.c
test/ssltestlib.c
test/stack_test.c
test/test_test.c
test/testutil/driver.c
test/testutil/format_output.c
test/testutil/main.c
test/testutil/tests.c
test/time_offset_test.c
test/v3nametest.c
test/x509_internal_test.c
test/x509_time_test.c
test/x509aux.c

index e28ab27767ab23b1cbb6668b4635c3540b1ed8fd..9146fb744b4b1cf5e6f03525d3ecd1b9e5238eb6 100644 (file)
@@ -14,7 +14,7 @@
  */
 
 #include <string.h>
  */
 
 #include <string.h>
-#include <internal/bio.h>
+#include "internal/bio.h"
 #include <openssl/asn1.h>
 #include "internal/cryptlib.h"
 
 #include <openssl/asn1.h>
 #include "internal/cryptlib.h"
 
index 8c699af78e37fe9f7c8a1259bb239ea0dc2d73ff..1359b5061a5ddd7987794139ec4657ab818afd1e 100644 (file)
@@ -19,7 +19,7 @@
 #include "async_locl.h"
 
 #include <openssl/err.h>
 #include "async_locl.h"
 
 #include <openssl/err.h>
-#include <internal/cryptlib_int.h>
+#include "internal/cryptlib_int.h"
 #include <string.h>
 
 #define ASYNC_JOB_RUNNING   0
 #include <string.h>
 
 #define ASYNC_JOB_RUNNING   0
index f0ac05a3db754e1f3aa174840ae9b744db18ec52..d7790293f74f52d3d0b9af3b472fc2130f5297a3 100644 (file)
@@ -20,7 +20,7 @@
 # include <windows.h>
 #endif
 
 # include <windows.h>
 #endif
 
-#include <internal/async.h>
+#include "internal/async.h"
 #include <openssl/crypto.h>
 
 typedef struct async_ctx_st async_ctx;
 #include <openssl/crypto.h>
 
 typedef struct async_ctx_st async_ctx;
index 6d854927fe9105e7bfbe4e190a3fd32a6c82900d..b2cd83c3929a78b94518bd3a5e7f5a5bdcf9bdbd 100644 (file)
@@ -16,7 +16,7 @@
 #ifndef OPENSSL_NO_SOCK
 #include <openssl/err.h>
 #include <openssl/buffer.h>
 #ifndef OPENSSL_NO_SOCK
 #include <openssl/err.h>
 #include <openssl/buffer.h>
-#include <internal/thread_once.h>
+#include "internal/thread_once.h"
 
 CRYPTO_RWLOCK *bio_lookup_lock;
 static CRYPTO_ONCE bio_lookup_init = CRYPTO_ONCE_STATIC_INIT;
 
 CRYPTO_RWLOCK *bio_lookup_lock;
 static CRYPTO_ONCE bio_lookup_init = CRYPTO_ONCE_STATIC_INIT;
index f7de429cbb549d715be925ecd4cdc979721b6dd3..337621be7f53bc92f2b1ce43c90f73322a644e4a 100644 (file)
@@ -87,7 +87,7 @@ union bio_addr_st {
 /* END BIO_ADDRINFO/BIO_ADDR stuff. */
 
 #include "internal/cryptlib.h"
 /* END BIO_ADDRINFO/BIO_ADDR stuff. */
 
 #include "internal/cryptlib.h"
-#include <internal/bio.h>
+#include "internal/bio.h"
 
 typedef struct bio_f_buffer_ctx_struct {
     /*-
 
 typedef struct bio_f_buffer_ctx_struct {
     /*-
index 3cbac5bf85dfae8e5d4da3184eb59f61bc29d5da..be6420c028f86ba6cf28876bf460b23618b29360 100644 (file)
@@ -8,7 +8,7 @@
  */
 
 #include "bio_lcl.h"
  */
 
 #include "bio_lcl.h"
-#include <internal/thread_once.h>
+#include "internal/thread_once.h"
 
 CRYPTO_RWLOCK *bio_type_lock = NULL;
 static CRYPTO_ONCE bio_type_init = CRYPTO_ONCE_STATIC_INIT;
 
 CRYPTO_RWLOCK *bio_type_lock = NULL;
 static CRYPTO_ONCE bio_type_init = CRYPTO_ONCE_STATIC_INIT;
index 58b1691eee7796517f694ccb207286e18255fd9e..a68a4ac49f9678c84736f83cb2a96534e87cfc1e 100644 (file)
@@ -13,7 +13,7 @@
 #ifndef OPENSSL_NO_SRP
 
 #include <openssl/srp.h>
 #ifndef OPENSSL_NO_SRP
 
 #include <openssl/srp.h>
-#include <internal/bn_srp.h>
+#include "internal/bn_srp.h"
 
 # if (BN_BYTES == 8)
 #  if (defined(_WIN32) || defined(_WIN64)) && !defined(__MINGW32__)
 
 # if (BN_BYTES == 8)
 #  if (defined(_WIN32) || defined(_WIN64)) && !defined(__MINGW32__)
index 3532114917c6b5395f62397230f2977d87bf7012..74759c56d5edbc0830f1e3862bf978292f400142 100644 (file)
@@ -9,7 +9,7 @@
 
 #include <stdio.h>
 #include <string.h>
 
 #include <stdio.h>
 #include <string.h>
-#include <internal/conf.h>
+#include "internal/conf.h"
 #include <openssl/crypto.h>
 #include <openssl/err.h>
 #include <openssl/conf.h>
 #include <openssl/crypto.h>
 #include <openssl/err.h>
 #include <openssl/conf.h>
index bed95abea4556baef4f3d180b1d166696b4bda1d..0815109d8192be6fd0505ecd47ad50e50a8d6020 100644 (file)
@@ -10,7 +10,7 @@
 #include <stdio.h>
 #include <openssl/crypto.h>
 #include "internal/cryptlib.h"
 #include <stdio.h>
 #include <openssl/crypto.h>
 #include "internal/cryptlib.h"
-#include <internal/conf.h>
+#include "internal/conf.h"
 #include <openssl/x509.h>
 #include <openssl/asn1.h>
 #include <openssl/engine.h>
 #include <openssl/x509.h>
 #include <openssl/asn1.h>
 #include <openssl/engine.h>
index 0af8b8f8f91e9500894a4af2a8ed715242c5ed59..60fdf820f05513bd83e36b83030db5ed5b986859 100644 (file)
@@ -12,8 +12,8 @@
 # define HEADER_ENGINE_INT_H
 
 # include "internal/cryptlib.h"
 # define HEADER_ENGINE_INT_H
 
 # include "internal/cryptlib.h"
-# include <internal/engine.h>
-# include <internal/thread_once.h>
+# include "internal/engine.h"
+# include "internal/thread_once.h"
 # include "internal/refcount.h"
 
 #ifdef  __cplusplus
 # include "internal/refcount.h"
 
 #ifdef  __cplusplus
index dce5cccfd844769dd1a54676ffbcc4164710c47e..02885f46801cb52f26284c8338554364b7c782d4 100644 (file)
@@ -11,7 +11,7 @@
 #include <stdio.h>
 #include <openssl/crypto.h>
 #include "internal/cryptlib.h"
 #include <stdio.h>
 #include <openssl/crypto.h>
 #include "internal/cryptlib.h"
-#include <internal/engine.h>
+#include "internal/engine.h"
 #include <openssl/pem.h>
 #include <openssl/evp.h>
 #include <openssl/rand.h>
 #include <openssl/pem.h>
 #include <openssl/evp.h>
 #include <openssl/rand.h>
index b3defcbe4fdb6910e97d38f64d0b7a136db42325..7be64e3fd4e0c988c49ceb559a55580bf7812f40 100644 (file)
@@ -11,7 +11,7 @@
 
 #include <stdio.h>
 #include <string.h>
 
 #include <stdio.h>
 #include <string.h>
-#include <internal/engine.h>
+#include "internal/engine.h"
 #include <openssl/rand.h>
 #include <openssl/err.h>
 #include <openssl/crypto.h>
 #include <openssl/rand.h>
 #include <openssl/err.h>
 #include <openssl/crypto.h>
index eec071236eb1a5e4b27b70a1a799aa9fd19596b8..ab08435af1e2618a6c89f8f5ef46dfcfac5b3051 100644 (file)
 #include <stdio.h>
 #include <stdarg.h>
 #include <string.h>
 #include <stdio.h>
 #include <stdarg.h>
 #include <string.h>
-#include <internal/cryptlib_int.h>
-#include <internal/err.h>
-#include <internal/err_int.h>
+#include "internal/cryptlib_int.h"
+#include "internal/err.h"
+#include "internal/err_int.h"
 #include <openssl/lhash.h>
 #include <openssl/err.h>
 #include <openssl/crypto.h>
 #include <openssl/buffer.h>
 #include <openssl/bio.h>
 #include <openssl/opensslconf.h>
 #include <openssl/lhash.h>
 #include <openssl/err.h>
 #include <openssl/crypto.h>
 #include <openssl/buffer.h>
 #include <openssl/bio.h>
 #include <openssl/opensslconf.h>
-#include <internal/thread_once.h>
+#include "internal/thread_once.h"
 
 static int err_load_strings(const ERR_STRING_DATA *str);
 
 
 static int err_load_strings(const ERR_STRING_DATA *str);
 
index 76edfbd37bb88dd08e1ae41eea8a5254991ff8db..58a0691df7c76e6154ad5a492f99560be7d726b4 100644 (file)
@@ -10,7 +10,7 @@
 #include <stdio.h>
 #include "internal/cryptlib.h"
 #include <openssl/evp.h>
 #include <stdio.h>
 #include "internal/cryptlib.h"
 #include <openssl/evp.h>
-#include <internal/evp_int.h>
+#include "internal/evp_int.h"
 #include <openssl/pkcs12.h>
 #include <openssl/objects.h>
 
 #include <openssl/pkcs12.h>
 #include <openssl/objects.h>
 
index 86b2fc8584de7545561f6156e1336b5b29456daf..088f65cd80a30987bb47162007e125a442a7798a 100644 (file)
@@ -10,7 +10,7 @@
 #include <stdio.h>
 #include "internal/cryptlib.h"
 #include <openssl/evp.h>
 #include <stdio.h>
 #include "internal/cryptlib.h"
 #include <openssl/evp.h>
-#include <internal/evp_int.h>
+#include "internal/evp_int.h"
 #include <openssl/pkcs12.h>
 #include <openssl/objects.h>
 
 #include <openssl/pkcs12.h>
 #include <openssl/objects.h>
 
index f69ba5b2f53348bc7961705097b02490072bd060..a2f26d8c5f23bd6ab7a325304f34ea67c9611de3 100644 (file)
@@ -13,7 +13,7 @@
 #ifndef OPENSSL_NO_RC5
 
 # include <openssl/evp.h>
 #ifndef OPENSSL_NO_RC5
 
 # include <openssl/evp.h>
-# include <internal/evp_int.h>
+# include "internal/evp_int.h"
 # include <openssl/objects.h>
 # include "evp_locl.h"
 # include <openssl/rc5.h>
 # include <openssl/objects.h>
 # include "evp_locl.h"
 # include <openssl/rc5.h>
index a92be1fedf18a995ae7211c71bef8e849a1da871..41c3ceee3adc9a0ce96842cd0b7c145f9f6212ac 100644 (file)
@@ -10,7 +10,7 @@
 #include <stdio.h>
 #include "internal/cryptlib.h"
 #include <openssl/evp.h>
 #include <stdio.h>
 #include "internal/cryptlib.h"
 #include <openssl/evp.h>
-#include <internal/objects.h>
+#include "internal/objects.h"
 #include <openssl/x509.h>
 #include "internal/evp_int.h"
 
 #include <openssl/x509.h>
 #include "internal/evp_int.h"
 
index 101bb1edbd482f0b93f703bc571bb7ecce85999a..a52cd751f6fd846acee71e8a725ffa837c3fba93 100644 (file)
@@ -12,7 +12,7 @@
 #include <string.h>
 #include <openssl/evp.h>
 #include <openssl/err.h>
 #include <string.h>
 #include <openssl/evp.h>
 #include <openssl/err.h>
-#include <internal/numbers.h>
+#include "internal/numbers.h"
 
 #ifndef OPENSSL_NO_SCRYPT
 
 
 #ifndef OPENSSL_NO_SCRYPT
 
index fc01c827f38fdcd122021b01806b133484cf743c..c8f0a3f1ee4b870920b80bc144fa12eb7796f5fc 100644 (file)
@@ -7,24 +7,24 @@
  * https://www.openssl.org/source/license.html
  */
 
  * https://www.openssl.org/source/license.html
  */
 
-#include <internal/cryptlib_int.h>
+#include "internal/cryptlib_int.h"
 #include <openssl/err.h>
 #include <openssl/err.h>
-#include <internal/rand_int.h>
-#include <internal/bio.h>
+#include "internal/rand_int.h"
+#include "internal/bio.h"
 #include <openssl/evp.h>
 #include <openssl/evp.h>
-#include <internal/evp_int.h>
-#include <internal/conf.h>
-#include <internal/async.h>
-#include <internal/engine.h>
-#include <internal/comp.h>
-#include <internal/err.h>
-#include <internal/err_int.h>
-#include <internal/objects.h>
+#include "internal/evp_int.h"
+#include "internal/conf.h"
+#include "internal/async.h"
+#include "internal/engine.h"
+#include "internal/comp.h"
+#include "internal/err.h"
+#include "internal/err_int.h"
+#include "internal/objects.h"
 #include <stdlib.h>
 #include <assert.h>
 #include <stdlib.h>
 #include <assert.h>
-#include <internal/thread_once.h>
-#include <internal/dso.h>
-#include <internal/store.h>
+#include "internal/thread_once.h"
+#include "internal/dso.h"
+#include "internal/store.h"
 
 static int stopped = 0;
 
 
 static int stopped = 0;
 
index cf96c5677956d737d619f93a4fb62310de5c3be7..73676445c1e43b2559bea6fc9610819675258385 100644 (file)
@@ -16,7 +16,7 @@
 #include <openssl/objects.h>
 #include <openssl/safestack.h>
 #include <openssl/e_os2.h>
 #include <openssl/objects.h>
 #include <openssl/safestack.h>
 #include <openssl/e_os2.h>
-#include <internal/thread_once.h>
+#include "internal/thread_once.h"
 #include "obj_lcl.h"
 
 /*
 #include "obj_lcl.h"
 
 /*
index 58f88ba4fa73df6ac351ab065ab79ac22cc9f750..fd297e2082e4911ab9dd4013d3bacc06fe5b7251 100644 (file)
@@ -22,8 +22,8 @@
 #include <openssl/x509.h>
 #include <openssl/x509v3.h>
 #include <openssl/objects.h>
 #include <openssl/x509.h>
 #include <openssl/x509v3.h>
 #include <openssl/objects.h>
-#include <internal/dane.h>
-#include <internal/x509_int.h>
+#include "internal/dane.h"
+#include "internal/x509_int.h"
 #include "x509_lcl.h"
 
 /* CRL score values */
 #include "x509_lcl.h"
 
 /* CRL score values */
diff --git a/e_os.h b/e_os.h
index 87d98c24be2a5958fe0a1ad0dcb8819222605db6..b90ed274798f81fb2052db19e6dfe1160c723f6d 100644 (file)
--- a/e_os.h
+++ b/e_os.h
@@ -14,7 +14,7 @@
 
 # include <openssl/e_os2.h>
 # include <openssl/crypto.h>
 
 # include <openssl/e_os2.h>
 # include <openssl/crypto.h>
-# include <internal/nelem.h>
+# include "internal/nelem.h"
 
 /*
  * <openssl/e_os2.h> contains what we can justify to make visible to the
 
 /*
  * <openssl/e_os2.h> contains what we can justify to make visible to the
index c076c5887a2a5f97f5210cc769f111aef3470984..402a76f6dfc50dd558c98241c6440d886580acca 100644 (file)
@@ -11,7 +11,7 @@
 # define HEADER_DSO_H
 
 # include <openssl/crypto.h>
 # define HEADER_DSO_H
 
 # include <openssl/crypto.h>
-# include <internal/dsoerr.h>
+# include "internal/dsoerr.h"
 
 #ifdef __cplusplus
 extern "C" {
 
 #ifdef __cplusplus
 extern "C" {
index 06e324b5b7b6e24098912d093a47335598d01e64..34f7349114726c548fa332363f705783d7556dfa 100644 (file)
@@ -16,7 +16,7 @@
 #include <openssl/evp.h>
 #include <openssl/objects.h>
 #include "testutil.h"
 #include <openssl/evp.h>
 #include <openssl/objects.h>
 #include "testutil.h"
-#include <internal/nelem.h>
+#include "internal/nelem.h"
 
 /**********************************************************************
  *
 
 /**********************************************************************
  *
index c185ece98f7311fba80ecfb1ef1a2323b1b6e679..96394a1bf86512d5631f606a5d9cca118fa68d3b 100644 (file)
@@ -16,7 +16,7 @@
 #include <openssl/evp.h>
 #include <openssl/objects.h>
 #include "testutil.h"
 #include <openssl/evp.h>
 #include <openssl/objects.h>
 #include "testutil.h"
-#include <internal/nelem.h>
+#include "internal/nelem.h"
 
 struct testdata {
     char *data;             /* TIME string value */
 
 struct testdata {
     char *data;             /* TIME string value */
index 932cb0eb1daf48cd44e7491b53aaf8bb2350e00c..7f6ffdc3caf082cb644a5b3c8336a41e37935446 100644 (file)
 #include <openssl/err.h>
 #include <openssl/rand.h>
 #include <openssl/kdf.h>
 #include <openssl/err.h>
 #include <openssl/rand.h>
 #include <openssl/kdf.h>
-
 #include "../ssl/packet_locl.h"
 #include "../ssl/packet_locl.h"
-#include <internal/nelem.h>
-
+#include "internal/nelem.h"
 #include "testutil.h"
 
 /* For DTLS1_BAD_VER packets the MAC doesn't include the handshake header */
 #include "testutil.h"
 
 /* For DTLS1_BAD_VER packets the MAC doesn't include the handshake header */
index 0639ec888d35854a3cdd5095c2db6dba64ef446c..36029c2f7b2b61a1aab55bc09e7472644882a419 100644 (file)
 #include <string.h>
 #include <stdlib.h>
 #include <openssl/opensslconf.h> /* To see if OPENSSL_NO_BF is defined */
 #include <string.h>
 #include <stdlib.h>
 #include <openssl/opensslconf.h> /* To see if OPENSSL_NO_BF is defined */
-
 #include "testutil.h"
 
 #include "testutil.h"
 
-#include <internal/nelem.h>
-
+#include "internal/nelem.h"
 #ifndef OPENSSL_NO_BF
 # include <openssl/blowfish.h>
 
 #ifndef OPENSSL_NO_BF
 # include <openssl/blowfish.h>
 
index da07446adb1034dfb367ae9a82fce4cb532c23ac..667cba67a7e72271cd6b991df4ff8d2c85a72db6 100644 (file)
@@ -12,9 +12,9 @@
 #include <string.h>
 #include <ctype.h>
 
 #include <string.h>
 #include <ctype.h>
 
-#include <internal/nelem.h>
+#include "internal/nelem.h"
 #include "../e_os.h"
 #include "../e_os.h"
-#include <internal/numbers.h>
+#include "internal/numbers.h"
 #include <openssl/bn.h>
 #include <openssl/crypto.h>
 #include <openssl/err.h>
 #include <openssl/bn.h>
 #include <openssl/crypto.h>
 #include <openssl/err.h>
index 417a4cba2e8adf841db79821445cd9bf36f9bdeb..179d7d56d31310c5d35efa4f8bb341711e568eb1 100644 (file)
@@ -12,7 +12,7 @@
 #include <stdlib.h>
 
 #include <openssl/opensslconf.h> /* To see if OPENSSL_NO_CAST is defined */
 #include <stdlib.h>
 
 #include <openssl/opensslconf.h> /* To see if OPENSSL_NO_CAST is defined */
-#include <internal/nelem.h>
+#include "internal/nelem.h"
 #include "testutil.h"
 
 #ifndef OPENSSL_NO_CAST
 #include "testutil.h"
 
 #ifndef OPENSSL_NO_CAST
index a07ac7e86b6ea0bf47cf35ce9f1c3f608b6ac4be..f8c6fd738e56b64fca4d5a27bb25b836aeb4b981 100644 (file)
@@ -7,7 +7,7 @@
  * https://www.openssl.org/source/license.html
  */
 
  * https://www.openssl.org/source/license.html
  */
 
-#include <internal/nelem.h>
+#include "internal/nelem.h"
 #include "testutil.h"
 
 #ifdef __VMS
 #include "testutil.h"
 
 #ifdef __VMS
index 13d6b23aaac89b4b397165b73c22d0f5dbab99ab..6418b42408c8518af8eacc3fd3b12bda4c1fb171 100644 (file)
@@ -18,7 +18,7 @@
 #include <openssl/ssl3.h>
 #include <openssl/tls1.h>
 
 #include <openssl/ssl3.h>
 #include <openssl/tls1.h>
 
-#include <internal/nelem.h>
+#include "internal/nelem.h"
 #include "testutil.h"
 
 static SSL_CTX *ctx;
 #include "testutil.h"
 
 static SSL_CTX *ctx;
index 6ec963110e4c160f4c32de7a056344a8f83357ec..2d8288d2141a3545b6ddf33374910bb99579de78 100644 (file)
@@ -18,7 +18,7 @@
 #include <openssl/ssl3.h>
 #include <openssl/tls1.h>
 
 #include <openssl/ssl3.h>
 #include <openssl/tls1.h>
 
-#include <internal/nelem.h>
+#include "internal/nelem.h"
 #include "testutil.h"
 
 typedef struct cipherlist_test_fixture {
 #include "testutil.h"
 
 typedef struct cipherlist_test_fixture {
index 0eac902ca9fe815545e5197f0f1ae052387be2c3..303e28f50ff5a367dd119ba4cbb7f521b169355c 100644 (file)
@@ -19,7 +19,7 @@
 #include <openssl/ssl3.h>
 #include <openssl/tls1.h>
 
 #include <openssl/ssl3.h>
 #include <openssl/tls1.h>
 
-#include <internal/nelem.h>
+#include "internal/nelem.h"
 #include "testutil.h"
 
 typedef struct cipher_id_name {
 #include "testutil.h"
 
 typedef struct cipher_id_name {
index 24cbaf3660d87aa209061e19c4eb1e0ae29aa83c..200cb376c5d306cf8789db9568131b476c331574 100644 (file)
@@ -10,7 +10,7 @@
 #include <stdio.h>
 #include <stdlib.h>
 
 #include <stdio.h>
 #include <stdlib.h>
 
-#include <internal/nelem.h>
+#include "internal/nelem.h"
 #include "internal/constant_time_locl.h"
 #include "testutil.h"
 #include "internal/numbers.h"
 #include "internal/constant_time_locl.h"
 #include "testutil.h"
 #include "internal/numbers.h"
index f5af4b1e4f983bca13bcde0904dfe2e6d3cb345f..5ea9cdc4ee343c09ee69a525769374e13234d8e0 100644 (file)
@@ -7,7 +7,7 @@
  * https://www.openssl.org/source/license.html
  */
 
  * https://www.openssl.org/source/license.html
  */
 
-#include <internal/nelem.h>
+#include "internal/nelem.h"
 #include <string.h>
 #include <openssl/bio.h>
 #include <openssl/crypto.h>
 #include <string.h>
 #include <openssl/bio.h>
 #include <openssl/crypto.h>
index 48edba49466e16478db129678fe7cb8616f18d3d..255982e2af84575fbb7988c38293cab2a550f360 100644 (file)
@@ -20,7 +20,7 @@
 #include <openssl/err.h>
 #include <openssl/x509.h>
 #include <openssl/x509v3.h>
 #include <openssl/err.h>
 #include <openssl/x509.h>
 #include <openssl/x509v3.h>
-#include <internal/nelem.h>
+#include "internal/nelem.h"
 
 static const ASN1_ITEM *item_type;
 static const char *test_file;
 
 static const ASN1_ITEM *item_type;
 static const char *test_file;
index de51c83f56173cfb6187af1af57cd8d25fbd2e59..54a79ab51fefce76fcc8315aaf3b558df2fddac8 100644 (file)
@@ -24,7 +24,7 @@
 #endif
 #include "testutil.h"
 
 #endif
 #include "testutil.h"
 
-#include <internal/nelem.h>
+#include "internal/nelem.h"
 
 #define _UC(c) ((unsigned char)(c))
 
 
 #define _UC(c) ((unsigned char)(c))
 
@@ -422,7 +422,7 @@ int setup_tests(void)
     return 1;
 }
 
     return 1;
 }
 
-#include <internal/dane.h>
+#include "internal/dane.h"
 
 static void store_ctx_dane_init(X509_STORE_CTX *store_ctx, SSL *ssl)
 {
 
 static void store_ctx_dane_init(X509_STORE_CTX *store_ctx, SSL *ssl)
 {
index ac09c445fa4aebe1480ed65791dd00cc61cf8e76..7500f37983e133e3c1573b7481bccab3ba8fd617 100644 (file)
@@ -11,7 +11,7 @@
 #include <stdlib.h>
 #include <string.h>
 
 #include <stdlib.h>
 #include <string.h>
 
-#include <internal/nelem.h>
+#include "internal/nelem.h"
 #include <openssl/crypto.h>
 #include <openssl/bio.h>
 #include <openssl/bn.h>
 #include <openssl/crypto.h>
 #include <openssl/bio.h>
 #include <openssl/bn.h>
index 28d0d905c35ac9bcba9565eeeba9516d6f4c3487..2363b5025caf788e86c588bec2daffbb6e58a1b2 100644 (file)
@@ -8,7 +8,7 @@
  */
 
 #include <string.h>
  */
 
 #include <string.h>
-#include <internal/nelem.h>
+#include "internal/nelem.h"
 #include <openssl/crypto.h>
 #include <openssl/err.h>
 #include <openssl/rand.h>
 #include <openssl/crypto.h>
 #include <openssl/err.h>
 #include <openssl/rand.h>
index d25a1d701f76cdad9062957974cd9a558ed0d2d4..fa2ec4af12b40c8714be688b4ead1108c11be96b 100644 (file)
@@ -19,7 +19,7 @@
 #include <openssl/dsa.h>
 
 #include "testutil.h"
 #include <openssl/dsa.h>
 
 #include "testutil.h"
-#include <internal/nelem.h>
+#include "internal/nelem.h"
 
 #ifndef OPENSSL_NO_DSA
 static int dsa_cb(int p, int n, BN_GENCB *arg);
 
 #ifndef OPENSSL_NO_DSA
 static int dsa_cb(int p, int n, BN_GENCB *arg);
index 00120cc0ab0d8ae85a07c036536c02ed15242512..807bb6d0a1beedde96be4adbc043baa95b4666b4 100644 (file)
@@ -12,7 +12,7 @@
 #include <openssl/bio.h>
 #include <openssl/err.h>
 #include <openssl/conf.h>
 #include <openssl/bio.h>
 #include <openssl/err.h>
 #include <openssl/conf.h>
-#include <internal/nelem.h>
+#include "internal/nelem.h"
 #include "testutil.h"
 
 #ifndef OPENSSL_NO_SOCK
 #include "testutil.h"
 
 #ifndef OPENSSL_NO_SOCK
index b47095cba01c38a9a208d0f488ef6580df639abd..3c6d2d5a595c4861e7a2d954d1fa6b51595465e0 100644 (file)
@@ -8,7 +8,7 @@
  * or in the file LICENSE in the source distribution.
  */
 
  * or in the file LICENSE in the source distribution.
  */
 
-#include <internal/nelem.h>
+#include "internal/nelem.h"
 #include "testutil.h"
 
 #include <stdio.h>
 #include "testutil.h"
 
 #include <stdio.h>
index 85847e087039c9325de9d0edd67006953d76d488..3267a3daf576ec4c55a45d9d53158799ee88c9f8 100644 (file)
@@ -8,7 +8,7 @@
  * https://www.openssl.org/source/license.html
  */
 
  * https://www.openssl.org/source/license.html
  */
 
-#include <internal/nelem.h>
+#include "internal/nelem.h"
 #include "testutil.h"
 
 #ifndef OPENSSL_NO_EC
 #include "testutil.h"
 
 #ifndef OPENSSL_NO_EC
index 5ca95e4fd64407bf82a00a865939d89f62c53e95..e3fab29a82f638894730e48c7d91b204c3eb7373 100644 (file)
@@ -16,7 +16,7 @@
 #include <openssl/rsa.h>
 #include <openssl/x509.h>
 #include "testutil.h"
 #include <openssl/rsa.h>
 #include <openssl/x509.h>
 #include "testutil.h"
-#include <internal/nelem.h>
+#include "internal/nelem.h"
 
 /*
  * kExampleRSAKeyDER is an RSA private key in ASN.1, DER format. Of course, you
 
 /*
  * kExampleRSAKeyDER is an RSA private key in ASN.1, DER format. Of course, you
index 62a2377dfd94bc788a68f222bbaba9f7b41ebc58..cde4d6bc4548d96f714dc4dbfdaed0b5092f87f5 100644 (file)
@@ -11,7 +11,7 @@
 #include <stdlib.h>
 #include <string.h>
 
 #include <stdlib.h>
 #include <string.h>
 
-#include <internal/nelem.h>
+#include "internal/nelem.h"
 
 #include <openssl/bio.h>
 #include <openssl/bn.h>
 
 #include <openssl/bio.h>
 #include <openssl/bn.h>
index b33cdd5640f22a4e963552fe00f603feaf6109c7..322957ad89ebe1c570c4ad008935f409c66658f2 100644 (file)
@@ -18,7 +18,7 @@
 
 #ifndef OPENSSL_NO_SOCK
 # define USE_SOCKETS
 
 #ifndef OPENSSL_NO_SOCK
 # define USE_SOCKETS
-# include <internal/nelem.h>
+# include "internal/nelem.h"
 #endif
 
 #include "handshake_helper.h"
 #endif
 
 #include "handshake_helper.h"
index abd1193d81974d10ffd34d3a6a7941a85a2963a8..ca775773a6e6b778a309270c6b206b9e5b56de85 100644 (file)
@@ -11,7 +11,7 @@
 #include <string.h>
 #include <stdlib.h>
 
 #include <string.h>
 #include <stdlib.h>
 
-#include <internal/nelem.h>
+#include "internal/nelem.h"
 
 # include <openssl/hmac.h>
 # include <openssl/sha.h>
 
 # include <openssl/hmac.h>
 # include <openssl/sha.h>
index 5b715fe1c919f0f7b4c628b284699892ec7b7adf..c80e18f80ab77fc8299dfdccf6583542c66d9221 100644 (file)
@@ -9,7 +9,7 @@
 
 #include <string.h>
 
 
 #include <string.h>
 
-#include <internal/nelem.h>
+#include "internal/nelem.h"
 #include "testutil.h"
 
 #ifndef OPENSSL_NO_IDEA
 #include "testutil.h"
 
 #ifndef OPENSSL_NO_IDEA
index 8a1db677047358064b85bb87580de50e2dfb7cb4..46910f8eeba3c47badc90c7100d3f66a403149c7 100644 (file)
@@ -12,7 +12,7 @@
 #include <openssl/rand.h>
 #include <stdio.h>
 #include <string.h>
 #include <openssl/rand.h>
 #include <stdio.h>
 #include <string.h>
-#include <internal/nelem.h>
+#include "internal/nelem.h"
 #include "testutil.h"
 
 #define TEST_SIZE       128
 #include "testutil.h"
 
 #define TEST_SIZE       128
index 6deea8d99210c608c6a9676a62f59e179cee38bc..162286b7cdd6150fa47a98373e4a2c45547247d6 100644 (file)
@@ -16,7 +16,7 @@
 #include <openssl/err.h>
 #include <openssl/crypto.h>
 
 #include <openssl/err.h>
 #include <openssl/crypto.h>
 
-#include <internal/nelem.h>
+#include "internal/nelem.h"
 #include "testutil.h"
 
 /*
 #include "testutil.h"
 
 /*
index df55932f82d36849a00d378b5607d6b254083a97..c5360d68a7848b5a3b9a99af0b41a4b05a3e8fe9 100644 (file)
@@ -9,7 +9,7 @@
 
 #include <string.h>
 
 
 #include <string.h>
 
-#include <internal/nelem.h>
+#include "internal/nelem.h"
 #include "testutil.h"
 
 #ifndef OPENSSL_NO_MD2
 #include "testutil.h"
 
 #ifndef OPENSSL_NO_MD2
index c5e74ea5ef5de3790118591ac420898bbdf813b2..64aa2dc1685204528818938c3be5018f938a1286 100644 (file)
@@ -14,7 +14,7 @@
 
 #include <openssl/mdc2.h>
 #include "testutil.h"
 
 #include <openssl/mdc2.h>
 #include "testutil.h"
-#include <internal/nelem.h>
+#include "internal/nelem.h"
 
 typedef struct {
     const char *input;
 
 typedef struct {
     const char *input;
index 5dfe60e8bfef763b923b11f1ee863c4df06d6c9b..0658843ce5e2046191efc09a93c7f77e85263478 100644 (file)
@@ -9,7 +9,7 @@
 
 #include <string.h>
 
 
 #include <string.h>
 
-#include <internal/nelem.h>
+#include "internal/nelem.h"
 #include "testutil.h"
 
 #if defined(OPENSSL_NO_DES) && !defined(OPENSSL_NO_MDC2)
 #include "testutil.h"
 
 #if defined(OPENSSL_NO_DES) && !defined(OPENSSL_NO_MDC2)
index 3fd0498b8b71f1375b29ec4368de5924e5b42135..f3e46fed80a1d98dded4f7a1386395bd9d1bf9e7 100644 (file)
@@ -16,7 +16,7 @@
 #include <openssl/modes.h>
 #include "../crypto/modes/modes_lcl.h"
 #include "testutil.h"
 #include <openssl/modes.h>
 #include "../crypto/modes/modes_lcl.h"
 #include "testutil.h"
-#include <internal/nelem.h>
+#include "internal/nelem.h"
 
 typedef struct {
     size_t size;
 
 typedef struct {
     size_t size;
index 55b76440eaec7a8d5b071ee22458e2610f78c012..d1d71c92ee75f1b1a8d88117cd9fe1efdf8ca7d4 100644 (file)
@@ -15,7 +15,7 @@
 #include "testutil.h"
 #include "internal/poly1305.h"
 #include "../crypto/poly1305/poly1305_local.h"
 #include "testutil.h"
 #include "internal/poly1305.h"
 #include "../crypto/poly1305/poly1305_local.h"
-#include <internal/nelem.h>
+#include "internal/nelem.h"
 
 typedef struct {
     size_t size;
 
 typedef struct {
     size_t size;
index fc00076b17084ee827bf878408a52b64aa6e579b..e64d1a728503939e4cc4931d7d0cd7cb27fcee41 100644 (file)
@@ -7,7 +7,7 @@
  * https://www.openssl.org/source/license.html
  */
 
  * https://www.openssl.org/source/license.html
  */
 
-#include <internal/nelem.h>
+#include "internal/nelem.h"
 #include "testutil.h"
 
 #ifndef OPENSSL_NO_RC2
 #include "testutil.h"
 
 #ifndef OPENSSL_NO_RC2
index e3f41b62089a0555b277ad1b94516294db5a97bd..15706ea3f05b19c9d3fd3cf0f0372822fc6a6cd6 100644 (file)
@@ -9,7 +9,7 @@
 
 #include <string.h>
 
 
 #include <string.h>
 
-#include <internal/nelem.h>
+#include "internal/nelem.h"
 #include "testutil.h"
 
 #ifndef OPENSSL_NO_RC4
 #include "testutil.h"
 
 #ifndef OPENSSL_NO_RC4
index 9aa214f814c2b74fe5acf3100ffc7d59435a07d0..d49366d9938ab5923551b9be6494562cc175139d 100644 (file)
@@ -9,7 +9,7 @@
 
 #include <string.h>
 
 
 #include <string.h>
 
-#include <internal/nelem.h>
+#include "internal/nelem.h"
 #include "testutil.h"
 
 #ifndef OPENSSL_NO_RC5
 #include "testutil.h"
 
 #ifndef OPENSSL_NO_RC5
index 13dcde1890225ed8c25ec9acb1981add93c4f546..2ad4de4734cd2c32f6ffb74bf9c07e34e60c983b 100644 (file)
@@ -12,7 +12,7 @@
 #include <stdio.h>
 #include <string.h>
 
 #include <stdio.h>
 #include <string.h>
 
-#include <internal/nelem.h>
+#include "internal/nelem.h"
 
 #include <openssl/crypto.h>
 #include <openssl/err.h>
 
 #include <openssl/crypto.h>
 #include <openssl/err.h>
index 80a19e992d5b8f4f22ded260a6a6358a915d3538..743c03b2d936409f3ce9a112a44f2a5bc94d2599 100644 (file)
@@ -8,7 +8,7 @@
  */
 
 #include <string.h>
  */
 
 #include <string.h>
-#include <internal/numbers.h>
+#include "internal/numbers.h"
 
 #include "testutil.h"
 
 
 #include "testutil.h"
 
index f1b66ee510c964d6608378965fb523bfac57b709..e0c473e26793d82af323238d8f247663eccf77bf 100644 (file)
@@ -21,7 +21,7 @@
 #include "../ssl/packet_locl.h"
 
 #include "testutil.h"
 #include "../ssl/packet_locl.h"
 
 #include "testutil.h"
-#include <internal/nelem.h>
+#include "internal/nelem.h"
 
 #define CLIENT_VERSION_LEN      2
 
 
 #define CLIENT_VERSION_LEN      2
 
index 60a2d8dd019d2af2022383d154ef626eb434ca23..5401e8c2e6ffbc3d9ee863e867f7c51e23baf3b7 100644 (file)
@@ -16,7 +16,7 @@
 #include "testutil.h"
 #include "internal/siphash.h"
 #include "../crypto/siphash/siphash_local.h"
 #include "testutil.h"
 #include "internal/siphash.h"
 #include "../crypto/siphash/siphash_local.h"
-#include <internal/nelem.h>
+#include "internal/nelem.h"
 
 static BIO* b_stderr = NULL;
 static BIO* b_stdout = NULL;
 
 static BIO* b_stderr = NULL;
 static BIO* b_stdout = NULL;
index 9f520152146a6cf36ab6f6717b5edfa5e02d180c..b298cfe225d9e8577fa27c8b44e2ed8a33cf7819 100644 (file)
@@ -14,7 +14,7 @@
 
 #include <openssl/ssl.h>
 #include "testutil.h"
 
 #include <openssl/ssl.h>
 #include "testutil.h"
-#include <internal/nelem.h>
+#include "internal/nelem.h"
 
 #ifdef __VMS
 # pragma names save
 
 #ifdef __VMS
 # pragma names save
index c9b0c432520c6df548789eb37639fc7ae20b8062..d4642e78ac85abc938d5cc4ce0b4d1e07e9abae4 100644 (file)
@@ -12,7 +12,7 @@
 #include <openssl/e_os2.h>
 #include <openssl/crypto.h>
 
 #include <openssl/e_os2.h>
 #include <openssl/crypto.h>
 
-#include <internal/nelem.h>
+#include "internal/nelem.h"
 #include "../e_os.h"
 #include "ssl_test_ctx.h"
 #include "testutil.h"
 #include "../e_os.h"
 #include "ssl_test_ctx.h"
 #include "testutil.h"
index 2376ce178f896d342b3a87f589166c84c3dbea13..194919d1f36c3144d5431717c63e48d72c79f698 100644 (file)
@@ -15,7 +15,7 @@
 #include <stdio.h>
 #include <string.h>
 
 #include <stdio.h>
 #include <string.h>
 
-#include <internal/nelem.h>
+#include "internal/nelem.h"
 #include "ssl_test_ctx.h"
 #include "testutil.h"
 #include <openssl/e_os2.h>
 #include "ssl_test_ctx.h"
 #include "testutil.h"
 #include <openssl/e_os2.h>
index 571da55294b92d566a4faaf826b6fdbb016316c8..622f159f1a3c36712e5f318a1fd827325ad6b31c 100644 (file)
@@ -17,7 +17,7 @@
 
 #include "ssltestlib.h"
 #include "testutil.h"
 
 #include "ssltestlib.h"
 #include "testutil.h"
-#include <internal/nelem.h>
+#include "internal/nelem.h"
 #include "../ssl/ssl_locl.h"
 
 static char *cert = NULL;
 #include "../ssl/ssl_locl.h"
 
 static char *cert = NULL;
index 9e3bb7a83d4891593ffa9dfd70b2a015ba54ae54..b95a5a44fcc8e449ea1c034d04326baa4f28afaf 100644 (file)
@@ -25,7 +25,7 @@
 #include <string.h>
 #include <time.h>
 
 #include <string.h>
 #include <time.h>
 
-#include <internal/nelem.h>
+#include "internal/nelem.h"
 
 #define USE_SOCKETS
 #include "e_os.h"
 
 #define USE_SOCKETS
 #include "e_os.h"
index 410d323a9ab849402f3d068139816e21207cc2cf..4473c670d7467e85b5b23b522312abf9d04d5857 100644 (file)
@@ -9,7 +9,7 @@
 
 #include <string.h>
 
 
 #include <string.h>
 
-#include <internal/nelem.h>
+#include "internal/nelem.h"
 #include "ssltestlib.h"
 #include "testutil.h"
 
 #include "ssltestlib.h"
 #include "testutil.h"
 
index 922dfdd41c8824495c52724797a4426e532d070a..c0ec46a6bde3d79cd4cb108bdabf276eacb1d9d7 100644 (file)
@@ -16,7 +16,7 @@
 #include <openssl/err.h>
 #include <openssl/crypto.h>
 
 #include <openssl/err.h>
 #include <openssl/crypto.h>
 
-#include <internal/nelem.h>
+#include "internal/nelem.h"
 #include "testutil.h"
 
 /* The macros below generate unused functions which error out one of the clang
 #include "testutil.h"
 
 /* The macros below generate unused functions which error out one of the clang
index 742cd61a6fbcf5e9ae6648636cef21592efa792f..2ec2b51159ef34148b5347c5c0987e25c646476b 100644 (file)
@@ -16,7 +16,7 @@
 #include <openssl/crypto.h>
 #include <openssl/bn.h>
 
 #include <openssl/crypto.h>
 #include <openssl/bn.h>
 
-#include <internal/nelem.h>
+#include "internal/nelem.h"
 #include "testutil.h"
 
 #define TEST(expected, test) test_case((expected), #test, (test))
 #include "testutil.h"
 
 #define TEST(expected, test) test_case((expected), #test, (test))
index 1859706996c7df17472d7958a5edbe3f562d9a70..2c28a73eb29ae4f22116c7ad6f7c2e188273e850 100644 (file)
@@ -14,7 +14,7 @@
 #include <string.h>
 #include <assert.h>
 
 #include <string.h>
 #include <assert.h>
 
-#include <internal/nelem.h>
+#include "internal/nelem.h"
 #include <openssl/bio.h>
 
 /*
 #include <openssl/bio.h>
 
 /*
index 9b04a94f4205e696be4febf759ff873594f8238a..9b9bab118cf86c9bdd79cd6059eb0c99ff2e9c71 100644 (file)
@@ -13,7 +13,7 @@
 
 #include <string.h>
 #include <ctype.h>
 
 #include <string.h>
 #include <ctype.h>
-#include <internal/nelem.h>
+#include "internal/nelem.h"
 
 /* The size of memory buffers to display on failure */
 #define MEM_BUFFER_SIZE     (2000)
 
 /* The size of memory buffers to display on failure */
 #define MEM_BUFFER_SIZE     (2000)
index 2f4eeb6798ff71d4021a9d8d5f10a1340cf3f837..6781a5245a029758e6c07595152bf757a946ec97 100644 (file)
@@ -8,7 +8,7 @@
  */
 
 #include "../testutil.h"
  */
 
 #include "../testutil.h"
-#include <internal/nelem.h>
+#include "internal/nelem.h"
 #include "output.h"
 #include "tu_local.h"
 
 #include "output.h"
 #include "tu_local.h"
 
index cea81ca2ec6b82b9c0781f42d35f4a206e094406..eb0a3938d1a7b321a4c1d808ca6b0c15781a5d6e 100644 (file)
@@ -14,7 +14,7 @@
 #include <errno.h>
 #include <string.h>
 #include <ctype.h>
 #include <errno.h>
 #include <string.h>
 #include <ctype.h>
-#include <internal/nelem.h>
+#include "internal/nelem.h"
 
 /*
  * Output a failed test first line.
 
 /*
  * Output a failed test first line.
index 8814ccb47ab6b4e447acb4ee25f288bffd67d6f7..f3b20dd2426eb4ec5fdb04b14c35cba9979cfba2 100644 (file)
@@ -16,7 +16,7 @@
 #include <openssl/asn1.h>
 #include <openssl/x509.h>
 #include "testutil.h"
 #include <openssl/asn1.h>
 #include <openssl/x509.h>
 #include "testutil.h"
-#include <internal/nelem.h>
+#include "internal/nelem.h"
 
 typedef struct {
     const char *data;
 
 typedef struct {
     const char *data;
index dee48328640f29a03b8a5372717335102bf620bd..a4ba775b5c40685fe96adf21d655c20051f1f51f 100644 (file)
@@ -8,7 +8,7 @@
  */
 
 #include <string.h>
  */
 
 #include <string.h>
-#include <internal/nelem.h>
+#include "internal/nelem.h"
 #include "../e_os.h"
 #include <openssl/x509.h>
 #include <openssl/x509v3.h>
 #include "../e_os.h"
 #include <openssl/x509.h>
 #include <openssl/x509v3.h>
index 930c01ce7bb8e8fef73ab2963b759c6b3845598e..2385d53ab298edb0cbf9bacb73b3cb8b363311a4 100644 (file)
@@ -15,7 +15,7 @@
 #include <openssl/x509.h>
 #include <openssl/x509v3.h>
 #include "testutil.h"
 #include <openssl/x509.h>
 #include <openssl/x509v3.h>
 #include "testutil.h"
-#include <internal/nelem.h>
+#include "internal/nelem.h"
 
 /**********************************************************************
  *
 
 /**********************************************************************
  *
index e8cec0cfeaaa4249d9bde8c95839ce79b17a4929..5983bdf11e93007a82b9c3886f00ad6d7a19959a 100644 (file)
@@ -15,7 +15,7 @@
 #include <openssl/asn1.h>
 #include <openssl/x509.h>
 #include "testutil.h"
 #include <openssl/asn1.h>
 #include <openssl/x509.h>
 #include "testutil.h"
-#include <internal/nelem.h>
+#include "internal/nelem.h"
 
 typedef struct {
     const char *data;
 
 typedef struct {
     const char *data;
index d38aeb026388f3ee330239d767ff990a5f1dfa1a..b66e1de71ae07df8a18177c40f098f429798b1f3 100644 (file)
@@ -16,7 +16,7 @@
 #include <openssl/pem.h>
 #include <openssl/conf.h>
 #include <openssl/err.h>
 #include <openssl/pem.h>
 #include <openssl/conf.h>
 #include <openssl/err.h>
-#include <internal/nelem.h>
+#include "internal/nelem.h"
 #include "testutil.h"
 
 static int test_certs(int num)
 #include "testutil.h"
 
 static int test_certs(int num)