From 162163d2d66381f1d2f9e7ed2f8c51a6686a0c13 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Tue, 30 Jan 2024 12:59:29 -0500 Subject: check for old _assert.h name --- scripts/check.sh | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'scripts') diff --git a/scripts/check.sh b/scripts/check.sh index 307f3533..0231db1a 100755 --- a/scripts/check.sh +++ b/scripts/check.sh @@ -10,6 +10,10 @@ check_signal_safety() { if ! (grep -q -F 'SIGNAL_SAFE(' "$1"); then printf '%s has no signal safety information\n' "$1" fi + + if (grep -q -F '_assert.h' "$1"); then + printf '%s still refers to _assert.h\n' "$1" + fi } check_file() { -- cgit v1.2.1