From 50f81fd74b78d407477b9b39c2034c87471b6cef Mon Sep 17 00:00:00 2001 From: "David S. Miller" Date: Wed, 18 Apr 2012 16:19:10 -0700 Subject: Remove all traces of reg_char. * sysdeps/generic/memcopy.h (reg_char): Delete. * debug/strcat_chk.c: Use char, not reg_char. * debug/strcpy_chk.c: Likewise. * debug/strncat_chk.c: Likewise. * debug/strncpy_chk.c: Likewise. * string/memchr.c: Likewise. * string/memrchr.c: Likewise. * string/rawmemchr.c: Likewise. * string/strcat.c: Likewise. * string/strchr.c: Likewise. * string/strchrnul.c: Likewise. * string/strcmp.c: Likewise. * string/strcpy.c: Likewise. * string/strncat.c: Likewise. * string/strncmp.c: Likewise. * string/strncpy.c: Likewise. --- sysdeps/generic/memcopy.h | 3 --- 1 file changed, 3 deletions(-) (limited to 'sysdeps/generic') diff --git a/sysdeps/generic/memcopy.h b/sysdeps/generic/memcopy.h index ad28466821..a8e5a44fe5 100644 --- a/sysdeps/generic/memcopy.h +++ b/sysdeps/generic/memcopy.h @@ -61,9 +61,6 @@ /* Type to use for unaligned operations. */ typedef unsigned char byte; -/* Optimal type for storing bytes in registers. */ -#define reg_char char - #if __BYTE_ORDER == __LITTLE_ENDIAN #define MERGE(w0, sh_1, w1, sh_2) (((w0) >> (sh_1)) | ((w1) << (sh_2))) #endif -- cgit 1.4.1