11 lines
142 B
C
11 lines
142 B
C
/* $Header$ */
|
|
/* A S M */
|
|
|
|
asm_seen(s)
|
|
char *s;
|
|
{
|
|
/* 'asm' '(' string ')' ';'
|
|
*/
|
|
warning("\"asm(\"%s\")\" instruction skipped", s);
|
|
}
|