gnu: Update main prototype.
* lib/gnu/x86-mes-gcc/crt1.c (main): Add parameters.
This commit is contained in:
parent
aa97000027
commit
f2009e70f9
|
@ -1,6 +1,6 @@
|
||||||
/* -*-comment-start: "//";comment-end:""-*-
|
/* -*-comment-start: "//";comment-end:""-*-
|
||||||
* Mes --- Maxwell Equations of Software
|
* Mes --- Maxwell Equations of Software
|
||||||
* Copyright © 2018,2019 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
* Copyright © 2018,2019,2023 Janneke Nieuwenhuizen <janneke@gnu.org>
|
||||||
*
|
*
|
||||||
* This file is part of Mes.
|
* This file is part of Mes.
|
||||||
*
|
*
|
||||||
|
@ -19,13 +19,13 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <gnu/hurd.h>
|
#include <gnu/hurd.h>
|
||||||
|
int main (int argc, char *argv[], char *envp[]);
|
||||||
|
|
||||||
char **environ;
|
char **environ;
|
||||||
int __stdin;
|
int __stdin;
|
||||||
int __stdout;
|
int __stdout;
|
||||||
int __stderr;
|
int __stderr;
|
||||||
|
|
||||||
int main ();
|
|
||||||
void _exit (int status);
|
void _exit (int status);
|
||||||
|
|
||||||
void _hurd_start (void);
|
void _hurd_start (void);
|
||||||
|
|
Loading…
Reference in a new issue