From 886061bfab195f2ec2163bd43b8ea42f4456081d Mon Sep 17 00:00:00 2001 From: Josh Ballard Date: Mon, 28 Sep 2015 18:44:39 -0600 Subject: [PATCH] Add new line to end of header For ANSI C compliancy on the strictest settings, this requires a newline at the end of the file. --- hashmap.c | 3 ++- hashmap.h | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/hashmap.c b/hashmap.c index 3978400..6885cb3 100644 --- a/hashmap.c +++ b/hashmap.c @@ -394,4 +394,5 @@ int hashmap_length(map_t in){ hashmap_map* m = (hashmap_map *) in; if(m != NULL) return m->size; else return 0; -} \ No newline at end of file +} + diff --git a/hashmap.h b/hashmap.h index 000efad..492da7a 100644 --- a/hashmap.h +++ b/hashmap.h @@ -78,4 +78,5 @@ extern void hashmap_free(map_t in); */ extern int hashmap_length(map_t in); -#endif __HASHMAP_H__ \ No newline at end of file +#endif +