* grub-core/gentrigtables.c: Make tables const.

This commit is contained in:
Vladimir 'phcoder' Serbinenko 2013-03-01 11:15:09 +01:00
parent 3056d3e752
commit 5d983f5fc2
3 changed files with 7 additions and 3 deletions

View file

@ -24,8 +24,8 @@
#define GRUB_TRIG_ANGLE_MASK 255
#define GRUB_TRIG_FRACTION_SCALE 16384
extern short grub_trig_sintab[];
extern short grub_trig_costab[];
extern const short grub_trig_sintab[];
extern const short grub_trig_costab[];
static __inline int
grub_sin (int x)