diff options
author | Bruce Momjian <bruce@momjian.us> | 2023-11-25 11:04:46 -0500 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2023-11-25 11:04:46 -0500 |
commit | 6ec8262a02a84470a6a5c936e51f6cb641cebce1 (patch) | |
tree | 0059ffbd18061e0e52e051d8f45fd870dee32ad3 /src | |
parent | 8d981341a552e31244f2e9992e143b56bf0292fc (diff) | |
download | postgresql-6ec8262a02a84470a6a5c936e51f6cb641cebce1.tar.gz postgresql-6ec8262a02a84470a6a5c936e51f6cb641cebce1.zip |
C comment: add header to pg_test_fsync.c
Reported-by: Michael Paquier
Discussion: https://postgr.es/m/CAB7nPqT1c9WrUw4+eSGF_-ru7ERBOC50a4r3tS1s-yT4OaYsLg@mail.gmail.com
Author: Michael Paquier
Backpatch-through: master
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/pg_test_fsync/pg_test_fsync.c | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/src/bin/pg_test_fsync/pg_test_fsync.c b/src/bin/pg_test_fsync/pg_test_fsync.c index 14fa4acae26..f56e494f70f 100644 --- a/src/bin/pg_test_fsync/pg_test_fsync.c +++ b/src/bin/pg_test_fsync/pg_test_fsync.c @@ -1,6 +1,12 @@ -/* - * pg_test_fsync.c - * tests all supported fsync() methods +/*------------------------------------------------------------------------- + * + * pg_test_fsync --- tests all supported fsync() methods + * + * Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group + * + * src/bin/pg_test_fsync/pg_test_fsync.c + * + *------------------------------------------------------------------------- */ #include "postgres_fe.h" |