libc: Rename lib_Exit lib__Exit

Naming collision with lib_exit on some systems
This commit is contained in:
Ville Juven 2022-05-10 12:04:42 +03:00 committed by Petro Karashchenko
parent 30a1b4e359
commit fb1c1bfe6c
2 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@
# Add the stdlib C files to the build
CSRCS += lib_abs.c lib_abort.c lib_atof.c lib_atoi.c lib_getprogname.c
CSRCS += lib_atol.c lib_atoll.c lib_div.c lib_ldiv.c lib_lldiv.c lib_Exit.c
CSRCS += lib_atol.c lib_atoll.c lib_div.c lib_ldiv.c lib_lldiv.c lib__Exit.c
CSRCS += lib_itoa.c lib_labs.c lib_llabs.c lib_realpath.c lib_bsearch.c
CSRCS += lib_rand.c lib_qsort.c lib_srand.c lib_strtol.c
CSRCS += lib_strtoll.c lib_strtoul.c lib_strtoull.c lib_strtod.c lib_strtof.c

View File

@ -1,5 +1,5 @@
/****************************************************************************
* libs/libc/stdlib/lib_Exit.c
* libs/libc/stdlib/lib__Exit.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with