aboutsummaryrefslogtreecommitdiff
path: root/sysdeps
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1998-10-22 14:41:49 +0000
committerUlrich Drepper <drepper@redhat.com>1998-10-22 14:41:49 +0000
commit84c8da0e7be6dc97fd5905c36dbfc71946a31c24 (patch)
treee7125407d5b911e6b8a9486d4c4d67e23d102354 /sysdeps
parentc7f5a0c7dfb17335d6b6b4ea3185b5f479df774b (diff)
downloadglibc-84c8da0e7be6dc97fd5905c36dbfc71946a31c24.tar
glibc-84c8da0e7be6dc97fd5905c36dbfc71946a31c24.tar.gz
glibc-84c8da0e7be6dc97fd5905c36dbfc71946a31c24.tar.bz2
glibc-84c8da0e7be6dc97fd5905c36dbfc71946a31c24.zip
Update.
1998-10-22 Andreas Jaeger <aj@arthur.rhein-neckar.de> * stdio/stdio.h: Use __PMT instead of __P in typedefs. * sysdeps/unix/sysv/linux/mips/bits/sigaction.h: Use __PMT instead of __P for sa_restorer. * sysdeps/unix/sysv/linux/sparc/bits/sigaction.h: Likewise. * sysdeps/unix/sysv/linux/kernel_sigaction.h (struct kernel_sigaction, old_kernel_sigaction): Likewise.
Diffstat (limited to 'sysdeps')
-rw-r--r--sysdeps/unix/sysv/linux/kernel_sigaction.h4
-rw-r--r--sysdeps/unix/sysv/linux/mips/bits/sigaction.h4
-rw-r--r--sysdeps/unix/sysv/linux/sparc/bits/sigaction.h4
3 files changed, 6 insertions, 6 deletions
diff --git a/sysdeps/unix/sysv/linux/kernel_sigaction.h b/sysdeps/unix/sysv/linux/kernel_sigaction.h
index 1ce2be20a1..1cbe0a1bd8 100644
--- a/sysdeps/unix/sysv/linux/kernel_sigaction.h
+++ b/sysdeps/unix/sysv/linux/kernel_sigaction.h
@@ -6,7 +6,7 @@ struct old_kernel_sigaction {
__sighandler_t k_sa_handler;
unsigned long sa_mask;
unsigned long sa_flags;
- void (*sa_restorer) __P ((void));
+ void (*sa_restorer) __PMT ((void));
};
/* This is the sigaction structure from the Linux 2.1.68 kernel. */
@@ -14,6 +14,6 @@ struct old_kernel_sigaction {
struct kernel_sigaction {
__sighandler_t k_sa_handler;
unsigned long sa_flags;
- void (*sa_restorer) __P ((void));
+ void (*sa_restorer) __PMT ((void));
sigset_t sa_mask;
};
diff --git a/sysdeps/unix/sysv/linux/mips/bits/sigaction.h b/sysdeps/unix/sysv/linux/mips/bits/sigaction.h
index 7f72406e01..435f8e00f6 100644
--- a/sysdeps/unix/sysv/linux/mips/bits/sigaction.h
+++ b/sysdeps/unix/sysv/linux/mips/bits/sigaction.h
@@ -1,5 +1,5 @@
/* The proper definitions for Linux/MIPS's sigaction.
- Copyright (C) 1993, 1994, 1995, 1997 Free Software Foundation, Inc.
+ Copyright (C) 1993, 1994, 1995, 1997, 1998 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
@@ -35,7 +35,7 @@ struct sigaction
/* The ABI says here are two unused ints following. */
/* Restore handler. */
- void (*sa_restorer) __P ((void));
+ void (*sa_restorer) __PMT ((void));
#if _MIPS_ISA == _MIPS_ISA_MIPS1 || _MIPS_ISA == _MIPS_ISA_MIPS2
int sa_resv[1];
diff --git a/sysdeps/unix/sysv/linux/sparc/bits/sigaction.h b/sysdeps/unix/sysv/linux/sparc/bits/sigaction.h
index 651b526a40..0797a5cbf4 100644
--- a/sysdeps/unix/sysv/linux/sparc/bits/sigaction.h
+++ b/sysdeps/unix/sysv/linux/sparc/bits/sigaction.h
@@ -1,5 +1,5 @@
/* The proper definitions for Linux/SPARC sigaction.
- Copyright (C) 1996, 1997 Free Software Foundation, Inc.
+ Copyright (C) 1996, 1997, 1998 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
@@ -34,7 +34,7 @@ struct sigaction
unsigned long sa_flags;
/* Not used by Linux/Sparc yet. */
- void (*sa_restorer) __P ((void));
+ void (*sa_restorer) __PMT ((void));
};