diff options
author | Nathan Bossart <nathan@postgresql.org> | 2024-09-20 15:18:42 -0500 |
---|---|---|
committer | Nathan Bossart <nathan@postgresql.org> | 2024-09-20 15:18:42 -0500 |
commit | afb03e2ebf595c057db0372f543f9f796effaadf (patch) | |
tree | a0bb0b13b21d41973d9916faad3a712e7b31da7f /src | |
parent | a2ebf3274a43acf7ae36d608fc26090b803ab6e1 (diff) | |
download | postgresql-afb03e2ebf595c057db0372f543f9f796effaadf.tar.gz postgresql-afb03e2ebf595c057db0372f543f9f796effaadf.zip |
Alphabetize #include directives in pg_checksums.c.
Author: Michael Banck
Discussion: https://postgr.es/m/66edaed0.050a0220.32a9ba.42c8%40mx.google.com
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/pg_checksums/pg_checksums.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_checksums/pg_checksums.c b/src/bin/pg_checksums/pg_checksums.c index 68a68eb0fac..f5f7ff10455 100644 --- a/src/bin/pg_checksums/pg_checksums.c +++ b/src/bin/pg_checksums/pg_checksums.c @@ -16,8 +16,8 @@ #include <dirent.h> #include <limits.h> -#include <time.h> #include <sys/stat.h> +#include <time.h> #include <unistd.h> #include "common/controldata_utils.h" |