* include/grub/misc.h (grub_strcat): Removed. All users changed to

more appropriate functions.
This commit is contained in:
Vladimir Serbinenko 2013-11-01 16:27:37 +01:00
parent fa9b3dcae2
commit e54b8f536b
6 changed files with 17 additions and 37 deletions

View file

@ -87,12 +87,6 @@ strncpy (char *dest, const char *src, grub_size_t n)
return grub_strncpy (dest, src, n);
}
static inline char *
strcat (char *dest, const char *src)
{
return grub_strcat (dest, src);
}
static inline int
strcoll (const char *s1, const char *s2)
{