seperr - print line and exit with a failure code
void seperr(string)
C print statement, see comments
This function permits the programmer to terminate program execution and print an error message using printf (3) format control. The message is prefixed with the program name to prevent confusion.
From fortran you can only specify a string to print, no format control is available.
From C:
seperr(format, value1, value2, ...)
char *format
From Fortran:
call seperr('error message')
printf(3), seplib, the sepwarn manpage
The system exit code used is -1.
Fortran programmers can only pass string values.
error exit quit
sep