diff options
Diffstat (limited to 'sysdeps/unix/sparc/start.c')
-rw-r--r-- | sysdeps/unix/sparc/start.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sysdeps/unix/sparc/start.c b/sysdeps/unix/sparc/start.c index 96cea9cf8c..a664189bb4 100644 --- a/sysdeps/unix/sparc/start.c +++ b/sysdeps/unix/sparc/start.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 92, 93, 94, 95, 96, 97 Free Software Foundation, Inc. +/* Copyright (C) 1991,92,93,94,95,96,97,2004 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 @@ -56,13 +56,13 @@ int __data_start = 0; weak_alias (__data_start, data_start) #endif -extern void __libc_init __P ((int argc, char **argv, char **envp)); -extern int main __P ((int argc, char **argv, char **envp)); +extern void __libc_init (int argc, char **argv, char **envp) __THROW; +extern int main (int argc, char **argv, char **envp) __THROW; register long int sp asm("%sp"), fp asm("%fp"); #ifndef NO_SHLIB -static void init_shlib __P ((void)); +static void init_shlib (void) __THROW; #endif #ifndef NO_EXPLICIT_START |