From c3cc5eb87891c06b636409342fd86e4d8893c549 Mon Sep 17 00:00:00 2001 From: Steven Fuller Date: Sun, 27 Apr 2008 01:45:21 -0700 Subject: Made sin/cos tables const. Made the sin/cos/arcsin/arccos tables const and removed the redundant externs that were scattered about. --- src/include/prototyp.h | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'src/include') diff --git a/src/include/prototyp.h b/src/include/prototyp.h index f982f77..265960b 100644 --- a/src/include/prototyp.h +++ b/src/include/prototyp.h @@ -29,13 +29,8 @@ */ - - -/* Grrr!! That's the last time these will be missing! */ -/* Oh, CDF 18/12/97 */ - -extern int sine[]; -extern int cosine[]; +extern const int sine[4096]; +extern const int cosine[4096]; typedef struct vectorch { -- cgit v1.3