diff options
author | HampusM <hampus@hampusmat.com> | 2022-01-07 12:56:37 +0100 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-01-07 12:56:37 +0100 |
commit | 977c46591583a59f8d51773ffaba08b5076a426e (patch) | |
tree | a04727c2075cebe0ae8b93728c9071e164a17c43 /src/utils.c | |
parent | 2876d7efdeac80085a04b8f1c509065bf323f70e (diff) |
style: fix minor code formatting issues
Diffstat (limited to 'src/utils.c')
-rw-r--r-- | src/utils.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/utils.c b/src/utils.c index 2657a00..5fc27d3 100644 --- a/src/utils.c +++ b/src/utils.c @@ -1,9 +1,9 @@ #include "utils.h" #include <ctype.h> -#include <string.h> -#include <stdlib.h> -#include <stdio.h> #include <limits.h> +#include <stdio.h> +#include <stdlib.h> +#include <string.h> void *malloc_s(unsigned long amount) { @@ -43,4 +43,3 @@ unsigned int str_to_uint(char *str, char **err) return (unsigned int)num; } - |