diff options
author | Andreas Jaeger <aj@suse.de> | 2001-06-01 08:17:11 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2001-06-01 08:17:11 +0000 |
commit | 852d75f9d618a77697d5869d188511740f992793 (patch) | |
tree | 3a30746f3aa1136ef6d7d3c484b5a04efbe9e189 /misc/sys/cdefs.h | |
parent | 371881fe91cc652dc8f556802cdccd650a94507c (diff) | |
download | glibc-852d75f9d618a77697d5869d188511740f992793.tar.gz glibc-852d75f9d618a77697d5869d188511740f992793.tar.xz glibc-852d75f9d618a77697d5869d188511740f992793.zip |
Update.
2001-06-01 Andreas Jaeger <aj@suse.de> * sysdeps/unix/sysv/linux/speed.c (cfsetispeed): Max speed is B4000000. (cfsetospeed): Likewise. Reported by Lukasz Trabinski <lukasz@lt.wsisiz.edu.pl>. 2001-05-31 Joseph S. Myers <jsm28@cam.ac.uk> * misc/sys/cdefs.h (__restrict_arr): Define to empty for C++.
Diffstat (limited to 'misc/sys/cdefs.h')
-rw-r--r-- | misc/sys/cdefs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/sys/cdefs.h b/misc/sys/cdefs.h index ec3b48d212..5a9d826735 100644 --- a/misc/sys/cdefs.h +++ b/misc/sys/cdefs.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1992,93,94,95,96,97,98,99, 2000 Free Software Foundation, Inc. +/* Copyright (C) 1992,93,94,95,96,97,98,99,2000,2001 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 @@ -196,7 +196,7 @@ /* ISO C99 also allows to declare arrays as non-overlapping. The syntax is array_name[restrict] GCC 3.1 supports this. */ -#if __GNUC_PREREQ (3,1) +#if __GNUC_PREREQ (3,1) && !defined __GNUG__ # define __restrict_arr __restrict #else # ifdef __GNUC__ |