wiring: use 'const' with 'rcsid'

This commit is contained in:
Darryl L. Miles 2025-01-31 19:04:54 +00:00 committed by Tim Edwards
parent 922abe6b8d
commit 154c3efa5c
3 changed files with 3 additions and 3 deletions

View File

@ -19,7 +19,7 @@
*/
#ifndef lint
static char rcsid[] __attribute__ ((unused)) = "$Header$";
static const char rcsid[] __attribute__ ((unused)) = "$Header$";
#endif /* not lint */
#include <stdio.h>

View File

@ -18,7 +18,7 @@
*/
#ifndef lint
static char rcsid[] __attribute__ ((unused)) = "$Header$";
static const char rcsid[] __attribute__ ((unused)) = "$Header$";
#endif /* not lint */
#include <stdio.h>

View File

@ -18,7 +18,7 @@
*/
#ifndef lint
static char rcsid[] __attribute__ ((unused)) = "$Header$";
static const char rcsid[] __attribute__ ((unused)) = "$Header$";
#endif /* not lint */
#include <stdio.h>