Don't use 'register' keyword.

Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
Andrew Borodin 2014-08-05 09:47:56 +04:00
parent 9949fa74b6
commit fc8a65b8f2
2 changed files with 6 additions and 6 deletions

View File

@ -80,7 +80,7 @@ static char *menu = NULL;
static char *
strip_ext (char *ss)
{
register char *s = ss;
char *s = ss;
char *e = NULL;
while (*s)
{

View File

@ -239,7 +239,7 @@ static union record rec_buf;
static long
tar_from_oct (int digs, char *where)
{
register long value;
long value;
while (isspace ((unsigned char) *where))
{ /* Skip spaces */
@ -451,10 +451,10 @@ tar_read_header (struct vfs_class *me, struct vfs_s_super *archive, int tard, si
{
tar_super_data_t *arch = (tar_super_data_t *) archive->data;
register int i;
register long sum, signed_sum, recsum;
register char *p;
register union record *header;
int i;
long sum, signed_sum, recsum;
char *p;
union record *header;
static char *next_long_name = NULL, *next_long_link = NULL;
recurse: