From 03ef0cabc40578b22f4f0aec668ed3f3481587e6 Mon Sep 17 00:00:00 2001 From: Janneke Nieuwenhuizen Date: Sun, 27 Aug 2023 12:46:23 +0200 Subject: [PATCH] gnu: Update main prototype. * lib/gnu/x86-mes-gcc/crt1.c (main): Add parameters. --- lib/gnu/x86-mes-gcc/crt1.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/gnu/x86-mes-gcc/crt1.c b/lib/gnu/x86-mes-gcc/crt1.c index 18c41bb3..3138e33f 100644 --- a/lib/gnu/x86-mes-gcc/crt1.c +++ b/lib/gnu/x86-mes-gcc/crt1.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2018,2019 Jan (janneke) Nieuwenhuizen + * Copyright © 2018,2019,2023 Janneke Nieuwenhuizen * * This file is part of Mes. * @@ -19,13 +19,13 @@ */ #include +int main (int argc, char *argv[], char *envp[]); char **environ; int __stdin; int __stdout; int __stderr; -int main (); void _exit (int status); void _hurd_start (void);