From cfdcebb6e4ab36844e69b382848aed00b832dd34 Mon Sep 17 00:00:00 2001
From: Bob Dubner <rdubner@symas.com>
Date: Sat, 21 Dec 2024 23:32:42 -0500
Subject: [PATCH] Introduce exceptg.h

---
 gcc/cobol/exceptg.h    | 36 ++++++++++++++++++++++++++++++++++++
 gcc/cobol/parse_ante.h |  2 ++
 2 files changed, 38 insertions(+)
 create mode 100644 gcc/cobol/exceptg.h

diff --git a/gcc/cobol/exceptg.h b/gcc/cobol/exceptg.h
new file mode 100644
index 000000000000..708d692e5083
--- /dev/null
+++ b/gcc/cobol/exceptg.h
@@ -0,0 +1,36 @@
+ /*
+ * Copyright (c) 2021-2024 Symas Corporation
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions are
+ * met:
+ *
+ * * Redistributions of source code must retain the above copyright
+ *   notice, this list of conditions and the following disclaimer.
+ * * Redistributions in binary form must reproduce the above
+ *   copyright notice, this list of conditions and the following disclaimer
+ *   in the documentation and/or other materials provided with the
+ *   distribution.
+ * * Neither the name of the Symas Corporation nor the names of its
+ *   contributors may be used to endorse or promote products derived from
+ *   this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+ * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+#ifndef _EXCEPTG_H_
+#define _EXCEPTG_H_
+
+extern void declarative_runtime_match(cbl_field_t *declaratives,
+                                      cbl_label_t *lave );
+
+#endif
diff --git a/gcc/cobol/parse_ante.h b/gcc/cobol/parse_ante.h
index 65552d6e3351..feaf5a82cf2e 100644
--- a/gcc/cobol/parse_ante.h
+++ b/gcc/cobol/parse_ante.h
@@ -46,6 +46,8 @@
 #include <stack>
 #include <string>
 
+#include "exceptg.h"
+
 #define MAXLENGTH_FORMATTED_DATE     10
 #define MAXLENGTH_FORMATTED_TIME     19
 #define MAXLENGTH_FORMATTED_DATETIME 30
-- 
GitLab