summaryrefslogtreecommitdiff
path: root/regress/lib
diff options
context:
space:
mode:
authorTheo Buehler <tb@cvs.openbsd.org>2020-05-14 18:04:20 +0000
committerTheo Buehler <tb@cvs.openbsd.org>2020-05-14 18:04:20 +0000
commit7866009d6839f418a0e8ffc1c05cdc864343cc9e (patch)
tree37ba429551537464257b4184c61b9e944f39f5d7 /regress/lib
parent1edd9d469b00c4e6b7be4656754b2f638a36c20c (diff)
move a #define after the last #include line
Diffstat (limited to 'regress/lib')
-rw-r--r--regress/lib/libssl/handshake/handshake_table.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/regress/lib/libssl/handshake/handshake_table.c b/regress/lib/libssl/handshake/handshake_table.c
index 2728dd84a16..88777f6fa8d 100644
--- a/regress/lib/libssl/handshake/handshake_table.c
+++ b/regress/lib/libssl/handshake/handshake_table.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: handshake_table.c,v 1.14 2020/05/04 14:20:36 tb Exp $ */
+/* $OpenBSD: handshake_table.c,v 1.15 2020/05/14 18:04:19 tb Exp $ */
/*
* Copyright (c) 2019 Theo Buehler <tb@openbsd.org>
*
@@ -21,10 +21,10 @@
#include <stdlib.h>
#include <unistd.h>
-#define MAX_FLAGS (UINT8_MAX + 1)
-
#include "tls13_handshake.h"
+#define MAX_FLAGS (UINT8_MAX + 1)
+
/*
* From RFC 8446:
*