aboutsummaryrefslogtreecommitdiff
path: root/src/tutorial/complex.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/tutorial/complex.c')
-rw-r--r--src/tutorial/complex.c4
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;