Style: enforce 80 column limit
diff --git a/library/psa_crypto.c b/library/psa_crypto.c
index 7b1d16b..093d2e5 100644
--- a/library/psa_crypto.c
+++ b/library/psa_crypto.c
@@ -4846,10 +4846,11 @@
     return( status );
 }
 
-psa_status_t psa_key_derivation_input_bytes( psa_key_derivation_operation_t *operation,
-                                             psa_key_derivation_step_t step,
-                                             const uint8_t *data,
-                                             size_t data_length )
+psa_status_t psa_key_derivation_input_bytes(
+    psa_key_derivation_operation_t *operation,
+    psa_key_derivation_step_t step,
+    const uint8_t *data,
+    size_t data_length )
 {
     if( step == PSA_KEY_DERIVATION_INPUT_SECRET )
         return( PSA_ERROR_INVALID_ARGUMENT );
@@ -4858,9 +4859,10 @@
                                                data, data_length ) );
 }
 
-psa_status_t psa_key_derivation_input_key( psa_key_derivation_operation_t *operation,
-                                           psa_key_derivation_step_t step,
-                                           psa_key_handle_t handle )
+psa_status_t psa_key_derivation_input_key(
+    psa_key_derivation_operation_t *operation,
+    psa_key_derivation_step_t step,
+    psa_key_handle_t handle )
 {
     psa_key_slot_t *slot;
     psa_status_t status;