X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Farctwo.c;h=c6d72b7693734e509f6661cd6cf8ad0c4f460f44;hb=5191b3546cfb6c163228c23f214e325ddf60d46f;hp=4404936da47edd3e884da890635a5ca9a2a33301;hpb=341111f654709cd0295607a4abbe721495c77e90;p=gnulib.git diff --git a/lib/arctwo.c b/lib/arctwo.c index 4404936da..c6d72b769 100644 --- a/lib/arctwo.c +++ b/lib/arctwo.c @@ -1,5 +1,5 @@ /* arctwo.c --- The RC2 cipher as described in RFC 2268. - * Copyright (C) 2003-2006, 2008-2012 Free Software Foundation, Inc. + * Copyright (C) 2003-2006, 2008-2013 Free Software Foundation, Inc. * * This file is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published @@ -67,7 +67,7 @@ static const uint8_t arctwo_sbox[] = { }; /* C89 compliant way to cast 'char' to 'unsigned char'. */ -static inline unsigned char +static unsigned char to_uchar (char ch) { return ch;