X-Git-Url: https://git.distorted.org.uk/u/mdw/catacomb/blobdiff_plain/eb31b00e4098ffb93eaf574f70cdd108b6610080..4e66da02f19648ee1be862e67ba1d1fc5549fb7f:/gfx-sqr.c diff --git a/gfx-sqr.c b/gfx-sqr.c index 19ec574..60e1b3c 100644 --- a/gfx-sqr.c +++ b/gfx-sqr.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: gfx-sqr.c,v 1.2 2004/03/21 22:52:06 mdw Exp $ + * $Id: gfx-sqr.c,v 1.3 2004/04/02 01:03:49 mdw Exp $ * * Sqaring binary polynomials * @@ -30,6 +30,9 @@ /*----- Revision history --------------------------------------------------* * * $Log: gfx-sqr.c,v $ + * Revision 1.3 2004/04/02 01:03:49 mdw + * Miscellaneous constification. + * * Revision 1.2 2004/03/21 22:52:06 mdw * Merge and close elliptic curve branch. * @@ -49,7 +52,7 @@ /*----- Static variables --------------------------------------------------*/ -static uint16 tab[256] = GFX_SQRTAB; +static const uint16 tab[256] = GFX_SQRTAB; /*----- Main code ---------------------------------------------------------*/