Hello all:
I'm learning C. In the code fragment below (I got from ... probably source forge) my (gcc) compiler does not like the 'terminate' function.
Code: Select all
assemble() // ***************************** def.
{
initpass();
while ( !endfile ) {
if ( getline() == NULL ) {
fclose(srcf);
if ( (srcf = popfile()) == NULL ) break;
continue;
}
initline();
if ( *lineptr == '*' ) clearaddress();
else {
if ( !isspace(*lineptr) ) deflabel();
operation();
}
putline();
}
terminate(); // <<-------------terminate --------------<<
}
I cannot find any reference to 'terminate' in the GNU gcc manual or the GNU library function manual.
I searched /usr/lib for ' terminate('. Appears as a python function - not obvious as a C funtion.
The code above comes from around 1986 and is probably C at the K&R standard.
Does any-one here know about 'terminate' and is there a standard function (even return or break) that might replace this word?
Error message is: as68.c:243:5: warning: implicit declaration of function ‘terminate’; did you mean ‘tempnam’? [-Wimplicit-function-declaration]
terminate();
^~~~~~~~~
tempnam
Suggestions?
cobaka