Fix build error
Remove __dead.
This commit is contained in:
parent
618aecd2ec
commit
a1784b721d
4
expr.c
4
expr.c
|
@ -23,7 +23,7 @@ int to_integer(struct val *);
|
|||
void to_string(struct val *);
|
||||
int is_zero_or_null(struct val *);
|
||||
void nexttoken(int);
|
||||
__dead void error(void);
|
||||
void error(void);
|
||||
struct val *eval6(void);
|
||||
struct val *eval5(void);
|
||||
struct val *eval4(void);
|
||||
|
@ -219,7 +219,7 @@ nexttoken(int pat)
|
|||
return;
|
||||
}
|
||||
|
||||
__dead void
|
||||
void
|
||||
error(void)
|
||||
{
|
||||
errx(2, "syntax error");
|
||||
|
|
Loading…
Reference in New Issue
Block a user