From 0c9e076a4ab62782b73ac09fb45fd9da0df19aec Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 30 Jan 2020 20:17:37 +0900 Subject: Removed explicit usage of the 'register' keyword. Signed-off-by: Michele Calgaro (cherry picked from commit 6db8697910438fd063598f66a73b68d2dcd70a36) --- mpg123_artsplugin/mpg123/dct64.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'mpg123_artsplugin/mpg123/dct64.c') diff --git a/mpg123_artsplugin/mpg123/dct64.c b/mpg123_artsplugin/mpg123/dct64.c index 59c19676..c3447a7f 100644 --- a/mpg123_artsplugin/mpg123/dct64.c +++ b/mpg123_artsplugin/mpg123/dct64.c @@ -18,8 +18,8 @@ void dct64(real *out0,real *out1,real *samples) real bufs[64]; { - register int i,j; - register real *b1,*b2,*bs,*costab; + int i,j; + real *b1,*b2,*bs,*costab; b1 = samples; bs = bufs; @@ -102,8 +102,8 @@ void dct64(real *out0,real *out1,real *samples) { - register real *b1; - register int i; + real *b1; + int i; for(b1=bufs,i=8;i;i--,b1+=4) b1[2] += b1[3]; -- cgit v1.2.1