floating.c
changeset 27 81a574d60c15
parent 9 c3fecc82ade6
child 29 7abf6146898e
--- a/floating.c
+++ b/floating.c
@@ -10,6 +10,7 @@
 double *getValues (int elements)
 {
     double *values;
+
     int i;
 
     if ((values = calloc (elements + 1, sizeof (double))) == NULL)
@@ -24,6 +25,7 @@
 int main (int argc, char **argv)
 {
     double *values = getValues (MAX);
+
     int i;
 
     for (i = 0; i < MAX; i++) {