Remove spaces around token-pasting macro operator

Signed-off-by: David Horstmann <david.horstmann@arm.com>
diff --git a/library/psa_crypto.c b/library/psa_crypto.c
index 2847d70..c84bbd2 100644
--- a/library/psa_crypto.c
+++ b/library/psa_crypto.c
@@ -118,12 +118,12 @@
  * - The name <input>_copy is not used for the given value of <input>
  */
 #define SWAP_FOR_LOCAL_INPUT(input, length) \
-    psa_crypto_local_input_t input ## _copy = PSA_CRYPTO_LOCAL_INPUT_INIT; \
-    status = psa_crypto_local_input_alloc(input, length, &input ## _copy); \
+    psa_crypto_local_input_t input##_copy = PSA_CRYPTO_LOCAL_INPUT_INIT; \
+    status = psa_crypto_local_input_alloc(input, length, &input##_copy); \
     if (status != PSA_SUCCESS) { \
         goto exit; \
     } \
-    input = input ## _copy.buffer;
+    input = input##_copy.buffer;
 
 /* Free the substituted input buffer copy created by SWAP_FOR_LOCAL_INPUT().
  * Note that this does not restore the pointer to the original buffer.
@@ -135,7 +135,7 @@
  */
 #define FREE_LOCAL_INPUT(input) \
     input = NULL; \
-    psa_crypto_local_input_free(&input ## _copy);
+    psa_crypto_local_input_free(&input##_copy);
 
 /* Substitute an output buffer for a local copy of itself.
  * Assumptions:
@@ -144,12 +144,12 @@
  * - The name <output>_copy is not used for the given value of <output>
  */
 #define SWAP_FOR_LOCAL_OUTPUT(output, length) \
-    psa_crypto_local_output_t output ## _copy = PSA_CRYPTO_LOCAL_OUTPUT_INIT; \
-    status = psa_crypto_local_output_alloc(output, length, &output ## _copy); \
+    psa_crypto_local_output_t output##_copy = PSA_CRYPTO_LOCAL_OUTPUT_INIT; \
+    status = psa_crypto_local_output_alloc(output, length, &output##_copy); \
     if (status != PSA_SUCCESS) { \
         goto exit; \
     } \
-    output = output ## _copy.buffer;
+    output = output##_copy.buffer;
 
 /* Free the substituted output buffer copy created by SWAP_FOR_LOCAL_OUTPUT()
  * after first copying back its contents to the original buffer.
@@ -165,13 +165,13 @@
  */
 #define FREE_LOCAL_OUTPUT(output) \
     output = NULL; \
-    psa_status_t output ## _local_output_status; \
-    output ## _local_output_status = psa_crypto_local_output_free(&output ## _copy); \
-    if (output ## _local_output_status != PSA_SUCCESS) { \
+    psa_status_t output##_local_output_status; \
+    output##_local_output_status = psa_crypto_local_output_free(&output##_copy); \
+    if (output##_local_output_status != PSA_SUCCESS) { \
         /* Since this error case is an internal error, it's more serious than \
          * any existing error code and so it's fine to overwrite the existing \
          * status. */ \
-        status = output ## _local_output_status; \
+        status = output##_local_output_status; \
     }
 #else /* MBEDTLS_PSA_COPY_CALLER_BUFFERS */
 #define SWAP_FOR_LOCAL_INPUT(input, length)