Re: [PATCH] Delete ffs and strrchr prototypes.

2023-01-15 Thread Samuel Thibault
Applied, thanks! Flavio Cruz, le sam. 14 janv. 2023 19:52:45 -0500, a ecrit: > We use __builtin_ffs instead of ffs. strrchr is not used. > > Also removed the commented out memset implementation since it is > implemented in arch-specific code. > --- > include/string.h | 4 > kern/strings.c

[PATCH] Delete ffs and strrchr prototypes.

2023-01-14 Thread Flavio Cruz
We use __builtin_ffs instead of ffs. strrchr is not used. Also removed the commented out memset implementation since it is implemented in arch-specific code. --- include/string.h | 4 kern/strings.c | 21 - 2 files changed, 25 deletions(-) diff --git a/include/string.