diff options
author | Bruce Momjian <bruce@momjian.us> | 2014-07-10 14:02:08 -0400 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2014-07-10 14:02:08 -0400 |
commit | 6a605cd6bd9f689b35676623add0de9b90978bf1 (patch) | |
tree | a7876f3ecd6b6c56ffffd68fbaf60d69117dfaf7 /src/tutorial | |
parent | 5b214c5dd1de37764797b3fb9164af3c885a7b86 (diff) | |
download | postgresql-6a605cd6bd9f689b35676623add0de9b90978bf1.tar.gz postgresql-6a605cd6bd9f689b35676623add0de9b90978bf1.zip |
Adjust blank lines around PG_MODULE_MAGIC defines, for consistency
Report by Robert Haas
Diffstat (limited to 'src/tutorial')
-rw-r--r-- | src/tutorial/complex.c | 1 | ||||
-rw-r--r-- | src/tutorial/funcs.c | 1 | ||||
-rw-r--r-- | src/tutorial/funcs_new.c | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/src/tutorial/complex.c b/src/tutorial/complex.c index 922784004ea..a263110cd2d 100644 --- a/src/tutorial/complex.c +++ b/src/tutorial/complex.c @@ -12,7 +12,6 @@ #include "fmgr.h" #include "libpq/pqformat.h" /* needed for send/recv functions */ - PG_MODULE_MAGIC; typedef struct Complex diff --git a/src/tutorial/funcs.c b/src/tutorial/funcs.c index e5812758566..61ad1417a86 100644 --- a/src/tutorial/funcs.c +++ b/src/tutorial/funcs.c @@ -18,7 +18,6 @@ PG_MODULE_MAGIC; - /* These prototypes just prevent possible warnings from gcc. */ int add_one(int arg); diff --git a/src/tutorial/funcs_new.c b/src/tutorial/funcs_new.c index c8ef458226b..abe409b8591 100644 --- a/src/tutorial/funcs_new.c +++ b/src/tutorial/funcs_new.c @@ -16,7 +16,6 @@ #include "executor/executor.h" /* for GetAttributeByName() */ #include "utils/geo_decls.h" /* for point type */ - PG_MODULE_MAGIC; /* These prototypes just prevent possible warnings from gcc. */ |