ipl_tools/system.c: Cleanup unused function strlow()

It is no longer referenced in the code.

Signed-off-by: Jan Polensky <japo@linux.ibm.com>
Reviewed-by: Jan Höppner <hoeppner@linux.ibm.com>
Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
This commit is contained in:
Jan Polensky
2025-03-17 17:33:22 +01:00
committed by Jan Höppner
parent 2278f112ba
commit 29007541e8
2 changed files with 0 additions and 13 deletions

View File

@@ -53,8 +53,6 @@ extern void print_eckd(int show_ipl, const char *name);
extern int is_lpar(void);
extern int is_root(void);
extern void strlow(char *s);
extern void write_str(char *string, char *file);
extern int write_str_errno(char *string, char *file);
extern void read_str(char *string, const char *file, size_t len);

View File

@@ -46,17 +46,6 @@ int is_root(void)
return 0;
}
/*
* Convert a string to lower case
*/
void strlow(char *s)
{
while (*s) {
*s = tolower(*s);
s++;
}
}
/*
* Read a string from a particular file
*/