From: Paul Eggert Date: Fri, 13 Dec 2002 08:48:03 +0000 (+0000) Subject: Put "const" after type that it modifies consistently. X-Git-Tag: BISON-1_875~78 X-Git-Url: https://git.saurik.com/bison.git/commitdiff_plain/04e309ce35405521f7b1a7f9856d4007f7987b7b Put "const" after type that it modifies consistently. --- diff --git a/src/uniqstr.h b/src/uniqstr.h index 6dc7f3f8..90961d9c 100644 --- a/src/uniqstr.h +++ b/src/uniqstr.h @@ -41,7 +41,7 @@ uniqstr uniqstr_new (char const *s); void uniqstrs_new (void); /* Die if S is not a uniqstr. */ -void uniqstr_assert (const char *s); +void uniqstr_assert (char const *s); /* Free all the memory allocated for symbols. */ void uniqstrs_free (void);