summaryrefslogtreecommitdiff
path: root/src/interfaces/ecpg
diff options
context:
space:
mode:
authorNeil Conway <neilc@samurai.com>2004-10-13 01:25:13 +0000
committerNeil Conway <neilc@samurai.com>2004-10-13 01:25:13 +0000
commit7069dbcc317c287f98e55d5296ff7ca77fadab49 (patch)
treef6fb8476c006cef473c986f8200695bd78f9033b /src/interfaces/ecpg
parent1da2bccabbabbebc76af07c0c2276217420cef7d (diff)
More minor cosmetic improvements:
- remove another senseless "extern" keyword that was applied to a function definition - change a foo more function signatures from "some_type foo()" to "some_type foo(void)" - rewrite another K&R style function definition - make the type of the "action" function pointer in the KeyWord struct in src/backend/utils/adt/formatting.c more precise
Diffstat (limited to 'src/interfaces/ecpg')
-rw-r--r--src/interfaces/ecpg/preproc/output.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/ecpg/preproc/output.c b/src/interfaces/ecpg/preproc/output.c
index 055ad7f039e..27212ab4bc9 100644
--- a/src/interfaces/ecpg/preproc/output.c
+++ b/src/interfaces/ecpg/preproc/output.c
@@ -3,7 +3,7 @@
#include "extern.h"
void
-output_line_number()
+output_line_number(void)
{
if (input_filename)
fprintf(yyout, "\n#line %d \"%s\"\n", yylineno, input_filename);