diff options
author | Bruce Momjian <bruce@momjian.us> | 2001-10-25 05:50:21 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2001-10-25 05:50:21 +0000 |
commit | b81844b1738c584d92330a5ccd0fbd8b603d2886 (patch) | |
tree | 4fae0d4cd26048177fc5cd1a2dd91abc99ba0f99 /src/tutorial/complex.c | |
parent | 59da2105d8e6d95345b3b942a2e2aba8cead4838 (diff) | |
download | postgresql-b81844b1738c584d92330a5ccd0fbd8b603d2886.tar.gz postgresql-b81844b1738c584d92330a5ccd0fbd8b603d2886.zip |
pgindent run on all C files. Java run to follow. initdb/regression
tests pass.
Diffstat (limited to 'src/tutorial/complex.c')
-rw-r--r-- | src/tutorial/complex.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tutorial/complex.c b/src/tutorial/complex.c index 0a8f1408271..02a62056818 100644 --- a/src/tutorial/complex.c +++ b/src/tutorial/complex.c @@ -30,7 +30,7 @@ int4 complex_abs_cmp(Complex * a, Complex * b); * Input/Output functions *****************************************************************************/ -Complex * +Complex * complex_in(char *str) { double x, @@ -73,7 +73,7 @@ complex_out(Complex * complex) * New Operators *****************************************************************************/ -Complex * +Complex * complex_add(Complex * a, Complex * b) { Complex *result; |