diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-07-15 18:13:33 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-07-15 18:13:33 +0000 |
commit | 446d213c35105852d345b7cc72d71dd65d15d8ef (patch) | |
tree | bb9f5912c49d8258a004222123523efa8f20e68c | |
parent | 2946d3e1d4023581881d1761ffddbdeba3774e57 (diff) | |
download | glibc-446d213c35105852d345b7cc72d71dd65d15d8ef.zip glibc-446d213c35105852d345b7cc72d71dd65d15d8ef.tar.gz glibc-446d213c35105852d345b7cc72d71dd65d15d8ef.tar.bz2 |
Update.
1999-07-15 Ulrich Drepper <drepper@cygnus.com>
* posix/unistd.h: Use __PMT for exit.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | posix/unistd.h | 4 |
2 files changed, 6 insertions, 2 deletions
@@ -1,3 +1,7 @@ +1999-07-15 Ulrich Drepper <drepper@cygnus.com> + + * posix/unistd.h: Use __PMT for exit. + 1999-07-15 Philip Blundell <pb@nexus.co.uk> * sysdeps/unix/sysv/linux/arm/Versions (_inb, _inw, _inl, _outb, diff --git a/posix/unistd.h b/posix/unistd.h index 0a00010..ea1d47b 100644 --- a/posix/unistd.h +++ b/posix/unistd.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991,92,93,94,95,96,97,98 Free Software Foundation, Inc. +/* Copyright (C) 1991,92,93,94,95,96,97,98,99 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 @@ -488,7 +488,7 @@ extern int nice __P ((int __inc)); /* Terminate program execution with the low-order 8 bits of STATUS. */ -extern void _exit __P ((int __status)) __attribute__ ((__noreturn__)); +extern void _exit __PMT ((int __status)) __attribute__ ((__noreturn__)); /* Get the `_PC_*' symbols for the NAME argument to `pathconf' and `fpathconf'; |