Tidy up includes
authortb <tb@openbsd.org>
Tue, 9 Jul 2024 16:31:40 +0000 (16:31 +0000)
committertb <tb@openbsd.org>
Tue, 9 Jul 2024 16:31:40 +0000 (16:31 +0000)
lib/libcrypto/kdf/tls1_prf.c

index c0751b9..a015476 100644 (file)
@@ -7,11 +7,15 @@
  * https://www.openssl.org/source/license.html
  */
 
+#include <stdlib.h>
 #include <stdio.h>
-#include "internal/cryptlib.h"
-#include <openssl/kdf.h>
+#include <string.h>
+
+#include <openssl/err.h>
 #include <openssl/evp.h>
-#include "crypto/evp.h"
+#include <openssl/kdf.h>
+
+#include "evp_local.h"
 
 static int tls1_prf_alg(const EVP_MD *md,
                         const unsigned char *sec, size_t slen,