Skip to content

Commit cdba96d

Browse files
committed
Replace fatal_warning by fprintf(stderr...) to avoid debug.c requirement
1 parent 2a2f9cc commit cdba96d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mccode/src/port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ int strcasecmp(char *s1, char *s2)
3939
#ifndef HAVE_FDOPEN
4040
FILE *fdopen(int descr, const char *mode)
4141
{
42-
fatal_error("The '-' argument for standard input and output is not supported"
42+
fprintf(stderr, "The '-' argument for standard input and output is not supported"
4343
" on this system.");
4444
return(NULL);
4545
}

0 commit comments

Comments
 (0)