diff options
author | EuAndreh <eu@euandre.org> | 2024-04-06 11:28:10 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2024-04-06 11:28:10 -0300 |
commit | 0c7b99900d6c73530291c3c45dc8787fbd437d0f (patch) | |
tree | 99455434d1c02c4154b27fa563ea604bb3eb180e | |
parent | Canonicalize builds: remove "fuzz" references (diff) | |
download | pindaiba-0c7b99900d6c73530291c3c45dc8787fbd437d0f.tar.gz pindaiba-0c7b99900d6c73530291c3c45dc8787fbd437d0f.tar.xz |
Sort includes
-rw-r--r-- | src/catalog.c | 4 | ||||
-rw-r--r-- | src/logerr.c | 2 | ||||
-rw-r--r-- | src/random.c | 2 | ||||
-rw-r--r-- | tests/i18n.c | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/src/catalog.c b/src/catalog.c index 68ec3c3..e56ca0b 100644 --- a/src/catalog.c +++ b/src/catalog.c @@ -3,13 +3,13 @@ #include <assert.h> #include <errno.h> #include <nl_types.h> -#include <stdlib.h> #include <stdio.h> +#include <stdlib.h> #include <string.h> #include "logerr.h" -#include "catalog.h" +#include "catalog.h" static const char *const CATALOG_NAME = NAME; diff --git a/src/logerr.c b/src/logerr.c index c00a4c1..d8262fb 100644 --- a/src/logerr.c +++ b/src/logerr.c @@ -1,8 +1,8 @@ #include "config.h" #include <stdarg.h> -#include <stdlib.h> #include <stdio.h> +#include <stdlib.h> #include "logerr.h" diff --git a/src/random.c b/src/random.c index a35eafd..3ec9e24 100644 --- a/src/random.c +++ b/src/random.c @@ -3,8 +3,8 @@ #include <assert.h> #include <errno.h> #include <stddef.h> -#include <stdio.h> #include <stdint.h> +#include <stdio.h> #include <string.h> #include "logerr.h" diff --git a/tests/i18n.c b/tests/i18n.c index 47a3247..60e4620 100644 --- a/tests/i18n.c +++ b/tests/i18n.c @@ -2,8 +2,8 @@ #include <stdlib.h> -#include "../src/logerr.h" #include "../src/catalog.h" +#include "../src/logerr.h" int |