diff --git a/bin/expr/expr.y b/bin/expr/expr.y index 55a63b8f2351..f35f249506fa 100644 --- a/bin/expr/expr.y +++ b/bin/expr/expr.y @@ -1,4 +1,4 @@ -/* $NetBSD: expr.y,v 1.36 2009/01/20 14:22:37 joerg Exp $ */ +/* $NetBSD: expr.y,v 1.37 2011/08/25 01:11:47 joerg Exp $ */ /*_ * Copyright (c) 2000 The NetBSD Foundation, Inc. @@ -32,7 +32,7 @@ %{ #include #ifndef lint -__RCSID("$NetBSD: expr.y,v 1.36 2009/01/20 14:22:37 joerg Exp $"); +__RCSID("$NetBSD: expr.y,v 1.37 2011/08/25 01:11:47 joerg Exp $"); #endif /* not lint */ #include @@ -49,7 +49,7 @@ __RCSID("$NetBSD: expr.y,v 1.36 2009/01/20 14:22:37 joerg Exp $"); static const char * const *av; -static void yyerror(const char *, ...); +static void yyerror(const char *, ...) __dead; static int yylex(void); static int is_zero_or_null(const char *); static int is_integer(const char *);