]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
(sigstack): Correct type of first parameter.
authorUlrich Drepper <drepper@redhat.com>
Wed, 23 Feb 2000 05:43:27 +0000 (05:43 +0000)
committerUlrich Drepper <drepper@redhat.com>
Wed, 23 Feb 2000 05:43:27 +0000 (05:43 +0000)
sysdeps/generic/sigstack.c
sysdeps/unix/sysv/linux/sigstack.c

index 52b135a19f6d66a292c532fce81936d008b8c86e..b4e2748a4cf92a448b14d2847b21bed06a4d0272 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991, 1995, 1996, 1997 Free Software Foundation, Inc.
+/* Copyright (C) 1991, 1995, 1996, 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
@@ -23,7 +23,7 @@
    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 *ss;
      struct sigstack *oss;
 {
   __set_errno (ENOSYS);
index ab66360c9345d14e8107282726778d337ca6b678..c08aab31514e301ab009d5eab06c0c9128ca7c30 100644 (file)
@@ -1,5 +1,5 @@
 /* Emulate sigstack function using sigaltstack.
-   Copyright (C) 1998 Free Software Foundation, Inc.
+   Copyright (C) 1998, 2000 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
 
@@ -26,7 +26,7 @@
 #ifdef __NR_sigaltstack
 int
 sigstack (ss, oss)
-     const struct sigstack *ss;
+     struct sigstack *ss;
      struct sigstack *oss;
 {
   stack_t sas;