Rename a function to avoid a clash with an em system call.

This commit is contained in:
David Given 2018-06-13 21:34:14 +09:00
parent 670c7ce96f
commit 13a7abdd69
2 changed files with 2 additions and 2 deletions

View file

@ -123,7 +123,7 @@ int _ioeof(int channel)
return (0); return (0);
} }
void _close(void) void _closeall(void)
{ {
/* close all open files */ /* close all open files */
int i; int i;

View file

@ -207,7 +207,7 @@ clearstmt { int exp; }
; ;
closestmt: filelist closestmt: filelist
| /* empty */ { C_cal("_close"); } | /* empty */ { C_cal("_closeall"); }
; ;
filelist { int intv; } filelist { int intv; }