Replace fopen() calls with FILE *stdio.

This commit is contained in:
Mid Favila 2022-08-13 19:52:56 -04:00
parent 209c0401de
commit 0ecd45a51d
1 changed files with 2 additions and 2 deletions

View File

@ -71,7 +71,7 @@ int main(int argc, char **argv)
if(!strcmp(argv[i], "-"))
{
fppresence++;
newbuf = cat(fopen("/dev/stdin", "r"), upresence);
newbuf = cat(stdin, upresence);
}
else if((fp = fopen(argv[i], "r")) != NULL)
{
@ -100,7 +100,7 @@ int main(int argc, char **argv)
if(!fppresence)
{
buf = cat(fopen("/dev/stdin", "r"), upresence);
buf = cat(stdin, upresence);
}
if(!upresence)