diff options
Diffstat (limited to 'usr.bin/m4/eval.c')
-rw-r--r-- | usr.bin/m4/eval.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/m4/eval.c b/usr.bin/m4/eval.c index 4a3b12b..b1b2a39 100644 --- a/usr.bin/m4/eval.c +++ b/usr.bin/m4/eval.c @@ -170,9 +170,9 @@ register int td; case SYSCTYPE: /* * dosys - execute system command - */ - /* Make sure m4 output is NOT interrupted */ - fflush(stdout); + */ + /* Make sure m4 output is NOT interrupted */ + fflush(stdout); fflush(stderr); if (argc > 2) sysval = system(argv[2]); @@ -182,7 +182,7 @@ register int td; /* * dosysval - return value of the last * system call. - * + * */ pbnum(sysval); break; @@ -220,7 +220,7 @@ register int td; case SUBSTYPE: /* * dosub - select substring - * + * */ if (argc > 3) dosub(argv, argc); |