diff options
author | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-02-09 10:44:13 +0000 |
---|---|---|
committer | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-02-09 10:44:13 +0000 |
commit | 913ab0bcf89d43928f8fee35b22602d841d39c3a (patch) | |
tree | a7fdab111d66cef67c5aaf972703425f9ebca4e9 /gcc/ada/errno.c | |
parent | a31db762c8cfc6b34a818b70b7166a74aef46d0d (diff) | |
download | gcc-913ab0bcf89d43928f8fee35b22602d841d39c3a.tar.gz |
2004-02-09 Albert Lee <lee@gnat.com>
* errno.c: define _SGI_MP_SOURCE for task-safe errno on IRIX
2004-02-09 Ed Schonberg <schonberg@gnat.com>
* exp_ch3.adb (Build_Slice_Assignment): Handle properly case of null
slices.
* exp_ch6.adb (Expand_Call): Do not inline a call when the subprogram
is nested in an instance that is not frozen yet, to avoid
order-of-elaboration problems in gigi.
* sem_attr.adb (Analyze_Attribute, case 'Access): Within an inlined
body the attribute is legal.
2004-02-09 Robert Dewar <dewar@gnat.com>
* s-rident.ads: Minor comment correction
* targparm.adb: Remove dependence on uintp completely. There was
always a bug in Make in that it called Targparm before initializing
the Uint package. The old code appeared to get away with this, but
the new code did not! This caused an assertion error in gnatmake.
* targparm.ads: Fix bad comment, restriction pragmas with parameters
are indeed fully supported.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@77531 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/errno.c')
-rw-r--r-- | gcc/ada/errno.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/ada/errno.c b/gcc/ada/errno.c index fc6964b4ec2..ef69fd0da81 100644 --- a/gcc/ada/errno.c +++ b/gcc/ada/errno.c @@ -6,7 +6,7 @@ * * * C Implementation File * * * - * Copyright (C) 1992-2003 Free Software Foundation, Inc. * + * Copyright (C) 1992-2004 Free Software Foundation, Inc. * * * * GNAT is free software; you can redistribute it and/or modify it under * * terms of the GNU General Public License as published by the Free Soft- * @@ -39,6 +39,7 @@ #define _REENTRANT #define _THREAD_SAFE +#define _SGI_MP_SOURCE #include <errno.h> int |