]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - csu/munch-tmpl.c
Update.
[thirdparty/glibc.git] / csu / munch-tmpl.c
index c24eb897873d08176ea340e714f351d6feb2394d..de8419a7371312fe597c9c0e519b41517556ad1a 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991, 1995, 1997 Free Software Foundation, Inc.
+/* Copyright (C) 1991, 1995, 1997, 2000 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -30,7 +30,7 @@ __libc_init (int argc, char **argv, char **envp)
     {
       /* These functions are defined in crti.o to run the .init and .fini
         sections, which are used for initializers and finalizers.  */
-      extern void _init __P ((void)), _fini __P ((void));
+      extern void _init (void), _fini (void);
       atexit (&_fini);         /* Arrange for _fini to run at exit.  */
       _init ();
     }