diff options
Diffstat (limited to 'src/tutorial')
-rw-r--r-- | src/tutorial/complex.c | 4 | ||||
-rw-r--r-- | src/tutorial/funcs.c | 1 |
2 files changed, 2 insertions, 3 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; diff --git a/src/tutorial/funcs.c b/src/tutorial/funcs.c index cb3de3e6e76..d2c123a0094 100644 --- a/src/tutorial/funcs.c +++ b/src/tutorial/funcs.c @@ -62,7 +62,6 @@ makepoint(Point *pointx, Point *pointy) text * copytext(text *t) { - /* * VARSIZE is the total size of the struct in bytes. */ |