X-Git-Url: https://secure.softndesign.org/git/?a=blobdiff_plain;f=storage.c;h=15a64702a46b92278eaf34bf44f0ff5816419acd;hb=743e93f0edf2c7779d0af4e16e17662994e0caaf;hp=54815e2d98e69c299e208920ad4350128ce3b03c;hpb=890f7d4ff230dcd8085fc8a1be5c618b09fc34f5;p=calc.git diff --git a/storage.c b/storage.c index 54815e2..15a6470 100644 --- a/storage.c +++ b/storage.c @@ -73,12 +73,12 @@ void display (void) memory (DEFAULT_STORAGE_SIZE); } int i, n = size_tab (storage); - fprintf (stdout, "storage:"); + printf ("storage:"); for (i = 0; i < n; i++) { - fprintf (stdout, " "); - fprintf (stdout, minform, get_tab (storage, i + 1)); + printf (" "); + printl (get_tab (storage, i + 1)); } - fprintf (stdout, "\n"); + printf ("\n"); } void clear ()