mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
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:
committed by
Jan Höppner
parent
2278f112ba
commit
29007541e8
@@ -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);
|
||||
|
||||
@@ -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
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user