From a391c8f0eef8573fd6b99e6cd264a5f2caa539cb Mon Sep 17 00:00:00 2001 From: Flavio Cruz Date: Sun, 12 Feb 2023 17:14:23 -0500 Subject: Introduce complex_alignof to replace word_size Remove the concept of word_size since it is meaningless in some architectures. This is also done in preparation to possibly introduce 8-byte aligned messages. Message-Id: --- global.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'global.h') diff --git a/global.h b/global.h index 8e57df2..e3d42dd 100644 --- a/global.h +++ b/global.h @@ -67,8 +67,9 @@ extern string_t InternalHeaderFileName; extern string_t UserFileName; extern string_t ServerFileName; -extern int port_size; -extern int port_size_in_bits; +extern size_t port_size; +extern size_t port_size_in_bits; +extern size_t complex_alignof; extern void more_global(void); -- cgit v1.2.3