core: Remove duplicate environment initialization.
* src/mes.c (init): Remove envp parameter. Remove environment initialization. (main): Remove envp parameter. Update caller.
This commit is contained in:
parent
141688a865
commit
68f3db77cf
|
@ -1,6 +1,6 @@
|
||||||
/* -*-comment-start: "//";comment-end:""-*-
|
/* -*-comment-start: "//";comment-end:""-*-
|
||||||
* GNU Mes --- Maxwell Equations of Software
|
* GNU Mes --- Maxwell Equations of Software
|
||||||
* Copyright © 2016,2017,2018,2019,2020,2021 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
* Copyright © 2016,2017,2018,2019,2020,2021,2023 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
||||||
* Copyright © 2021 W. J. van der Laan <laanwj@protonmail.com>
|
* Copyright © 2021 W. J. van der Laan <laanwj@protonmail.com>
|
||||||
*
|
*
|
||||||
* This file is part of GNU Mes.
|
* This file is part of GNU Mes.
|
||||||
|
@ -164,9 +164,8 @@ read_boot () /*:((internal)) */
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
init (char **envp)
|
init ()
|
||||||
{
|
{
|
||||||
environ = envp;
|
|
||||||
__execl_c_argv = malloc (1024 * sizeof (char *)); /* POSIX minimum: 4096 */
|
__execl_c_argv = malloc (1024 * sizeof (char *)); /* POSIX minimum: 4096 */
|
||||||
__gettimeofday_time = malloc (sizeof (struct timeval));
|
__gettimeofday_time = malloc (sizeof (struct timeval));
|
||||||
__get_internal_run_time_ts = malloc (sizeof (struct timespec));
|
__get_internal_run_time_ts = malloc (sizeof (struct timespec));
|
||||||
|
@ -189,9 +188,9 @@ init (char **envp)
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
main (int argc, char **argv, char **envp)
|
main (int argc, char **argv)
|
||||||
{
|
{
|
||||||
init (envp);
|
init ();
|
||||||
|
|
||||||
struct scm *a = mes_environment (argc, argv);
|
struct scm *a = mes_environment (argc, argv);
|
||||||
a = mes_builtins (a);
|
a = mes_builtins (a);
|
||||||
|
|
Loading…
Reference in a new issue