diff options
author | Dimitri Staessens <dimitri@ouroboros.rocks> | 2024-02-19 12:54:06 +0100 |
---|---|---|
committer | Sander Vrijders <sander@ouroboros.rocks> | 2024-02-19 14:09:38 +0100 |
commit | a23b29ea4c1bd9d0407b2b070eb2dc9ad15e71cc (patch) | |
tree | c5b2771865e662599a647a2f899a0aec72defbe8 /include | |
parent | 06ee3370998f965b469d1c2859e3e34159c71e20 (diff) | |
download | ouroboros-a23b29ea4c1bd9d0407b2b070eb2dc9ad15e71cc.tar.gz ouroboros-a23b29ea4c1bd9d0407b2b070eb2dc9ad15e71cc.zip |
build: Fix missing newlines at end of file
Some files had a newline at the end, others didn't. Now they all do.
Signed-off-by: Dimitri Staessens <dimitri@ouroboros.rocks>
Signed-off-by: Sander Vrijders <sander@ouroboros.rocks>
Diffstat (limited to 'include')
-rw-r--r-- | include/ouroboros/crypt.h | 2 | ||||
-rw-r--r-- | include/ouroboros/flow.h | 2 | ||||
-rw-r--r-- | include/ouroboros/name.h | 2 | ||||
-rw-r--r-- | include/ouroboros/proc.h | 2 | ||||
-rw-r--r-- | include/ouroboros/serdes-oep.h | 2 | ||||
-rw-r--r-- | include/ouroboros/test.h | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/include/ouroboros/crypt.h b/include/ouroboros/crypt.h index f0521c5a..28fe63b2 100644 --- a/include/ouroboros/crypt.h +++ b/include/ouroboros/crypt.h @@ -53,4 +53,4 @@ int crypt_init(struct crypt_info * info); void crypt_fini(struct crypt_info * info); -#endif /* OUROBOROS_LIB_CRYPT_H */
\ No newline at end of file +#endif /* OUROBOROS_LIB_CRYPT_H */ diff --git a/include/ouroboros/flow.h b/include/ouroboros/flow.h index e10e987c..e6bf8886 100644 --- a/include/ouroboros/flow.h +++ b/include/ouroboros/flow.h @@ -51,4 +51,4 @@ struct flow_info { enum flow_state state; }; -#endif /* OUROBOROS_LIB_FLOW_H */
\ No newline at end of file +#endif /* OUROBOROS_LIB_FLOW_H */ diff --git a/include/ouroboros/name.h b/include/ouroboros/name.h index 0f71e63d..9d77a90b 100644 --- a/include/ouroboros/name.h +++ b/include/ouroboros/name.h @@ -37,4 +37,4 @@ struct name_info { enum pol_balance pol_lb; }; -#endif /* OUROBOROS_NAME_H */
\ No newline at end of file +#endif /* OUROBOROS_NAME_H */ diff --git a/include/ouroboros/proc.h b/include/ouroboros/proc.h index d0b010bb..80c67227 100644 --- a/include/ouroboros/proc.h +++ b/include/ouroboros/proc.h @@ -41,4 +41,4 @@ struct prog_info { char path[PROG_PATH_SIZE + 1]; }; -#endif /* OUROBOROS_LIB_PROC_H */
\ No newline at end of file +#endif /* OUROBOROS_LIB_PROC_H */ diff --git a/include/ouroboros/serdes-oep.h b/include/ouroboros/serdes-oep.h index 54a8f009..69ba71a4 100644 --- a/include/ouroboros/serdes-oep.h +++ b/include/ouroboros/serdes-oep.h @@ -67,4 +67,4 @@ ssize_t enroll_ack_ser(const struct enroll_ack * ack, int enroll_ack_des(struct enroll_ack * ack, const buffer_t buf); -#endif /* OUROBOROS_LIB_SERDES_OEP_H*/
\ No newline at end of file +#endif /* OUROBOROS_LIB_SERDES_OEP_H*/ diff --git a/include/ouroboros/test.h b/include/ouroboros/test.h index 56c92137..6e32579f 100644 --- a/include/ouroboros/test.h +++ b/include/ouroboros/test.h @@ -76,4 +76,4 @@ static int __attribute__((unused)) test_assert_fail(int(* testfunc)(void)) return -1; } -#endif /* OUROBOROS_LIB_TEST_H */
\ No newline at end of file +#endif /* OUROBOROS_LIB_TEST_H */ |