]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
2000-02-23 Roland McGrath <roland@baalperazim.frob.com>
authorRoland McGrath <roland@gnu.org>
Thu, 24 Feb 2000 04:17:42 +0000 (04:17 +0000)
committerRoland McGrath <roland@gnu.org>
Thu, 24 Feb 2000 04:17:42 +0000 (04:17 +0000)
* sysdeps/mach/hurd/sigstack.c (sigstack): Remove `const' from
argument type, for 2000-02-22 change in signal/signal.h declaration.

sysdeps/mach/hurd/sigstack.c

index 0f5afbaf9957d905b5cfb2c43cf265ee7d53ba65..204b12d1f954cc186a2a8b362ad404000023025b 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1992, 1997, 1998 Free Software Foundation, Inc.
+/* Copyright (C) 1992,97,98,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
@@ -23,9 +23,7 @@
 /* Run signals handlers on the stack specified by SS (if not NULL).
    If OSS is not NULL, it is filled in with the old signal stack status.  */
 int
-sigstack (ss, oss)
-     const struct sigstack *ss;
-     struct sigstack *oss;
+sigstack (struct sigstack *ss, struct sigstack *oss)
 {
   struct sigaltstack as, oas;