voron

experimental ARM OS
git clone git://git.2f30.org/voron
Log | Files | Refs | README | LICENSE

commit 6cd221502718901e6a43ed3a11ff2bca4ef52861
parent 071ae4824672ef44712f86c40e81edad08701200
Author: sin <sin@2f30.org>
Date:   Sun, 21 Jul 2013 21:09:19 +0100

Add comment markers at end of #endif in headers

Diffstat:
Minclude/hash.h | 2+-
Minclude/kfifo.h | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/hash.h b/include/hash.h @@ -12,4 +12,4 @@ int search_htable(struct htable *htable, void *data, size_t siz); int insert_htable(struct htable *htable, void *data, size_t siz); int remove_htable(struct htable *htable, void *data, size_t siz); -#endif +#endif /* __HASH_H */ diff --git a/include/kfifo.h b/include/kfifo.h @@ -6,4 +6,4 @@ void free_kfifo(struct kfifo *kfifo); int enqueue_kfifo(struct kfifo *kfifo, void *data, size_t siz); int dequeue_kfifo(struct kfifo *kfifo, void *data, size_t siz); -#endif +#endif /* __KFIFO_H */