From 3335138d16ed3ee77ee0d2dce87e1d4adb878b57 Mon Sep 17 00:00:00 2001 From: Martin Whitaker Date: Thu, 22 Dec 2022 10:17:46 +0000 Subject: [PATCH] Remove prototype for unimplemented variant of VLerror(). --- parse_misc.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/parse_misc.h b/parse_misc.h index e9a1477bb..86e86314b 100644 --- a/parse_misc.h +++ b/parse_misc.h @@ -1,7 +1,7 @@ #ifndef IVL_parse_misc_H #define IVL_parse_misc_H /* - * Copyright (c) 1998-2021 Stephen Williams (steve@icarus.com) + * Copyright (c) 1998-2022 Stephen Williams (steve@icarus.com) * * This source code is free software; you can redistribute it * and/or modify it in source code form under the terms of the GNU @@ -57,7 +57,6 @@ extern YYLTYPE yylloc; */ extern int VLlex(); extern void VLerror(const char*msg); -extern void VLerror(const YYLTYPE&loc, va_list ap); extern void VLerror(const YYLTYPE&loc, const char*msg, ...) __attribute__((format(printf,2,3))); #define yywarn VLwarn extern void VLwarn(const char*msg);