diff top/maint.mk @ 15990:2f6844abf7fd

maint.mk: fix a bug in sc_prohibit_stddef_without_use * top/maint.mk (sc_prohibit_stddef_without_use): Don't require / *\(/ after symbols like NULL, size_t, etc. Reported by Alfred M. Szmidt.
author Jim Meyering <meyering@redhat.com>
date Tue, 25 Oct 2011 15:49:18 +0200
parents 30a6c0b6ac8c
children 79bbea2afc18
line wrap: on
line diff
--- a/top/maint.mk	Tue Oct 25 12:26:49 2011 +0200
+++ b/top/maint.mk	Tue Oct 25 15:49:18 2011 +0200
@@ -618,7 +618,7 @@
 # Prohibit the inclusion of stddef.h without an actual use.
 sc_prohibit_stddef_without_use:
 	@h='stddef.h'							\
-	re='\<($(_stddef_syms_re)) *\('					\
+	re='\<($(_stddef_syms_re))\>'					\
 	  $(_sc_header_without_use)
 
 # Prohibit the inclusion of verify.h without an actual use.