mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-12 06:41:13 +02:00
(errno): Remove declarations that have been there
forever, and are known to conflict on some platforms with that provided by <errno.h>, which we include unconditionally. If <errno.h> doesn't provide a errno declaration, what is the point of it?
This commit is contained in:
parent
d53f85dd85
commit
fa80e2809e
3 changed files with 9 additions and 9 deletions
2
NEWS
2
NEWS
|
@ -47,7 +47,7 @@ Previously, expressions like `(match '((foo) (bar)) (((_ ...) ...) #t))'
|
||||||
would trigger an unbound variable error for `match:andmap'.
|
would trigger an unbound variable error for `match:andmap'.
|
||||||
|
|
||||||
** Fixed build issue for GNU/Linux on IA64
|
** Fixed build issue for GNU/Linux on IA64
|
||||||
** Fixed build issue on NetBSD 1.6
|
** Fixed build issues on NetBSD 1.6
|
||||||
** Fixed build issue on Solaris 2.10 x86_64
|
** Fixed build issue on Solaris 2.10 x86_64
|
||||||
|
|
||||||
* Changes to the distribution
|
* Changes to the distribution
|
||||||
|
|
|
@ -1,3 +1,11 @@
|
||||||
|
2008-02-27 Neil Jerram <neil@ossau.uklinux.net>
|
||||||
|
|
||||||
|
* _scm.h (errno): Remove declarations that have been there
|
||||||
|
forever, and are known to conflict on some platforms with that
|
||||||
|
provided by <errno.h>, which we include unconditionally. If
|
||||||
|
<errno.h> doesn't provide a errno declaration, what is the point
|
||||||
|
of it?
|
||||||
|
|
||||||
2008-02-23 Ludovic Courtès <ludo@gnu.org>
|
2008-02-23 Ludovic Courtès <ludo@gnu.org>
|
||||||
|
|
||||||
* numbers.c (scm_make_rectangular): Rename argument to
|
* numbers.c (scm_make_rectangular): Rename argument to
|
||||||
|
|
|
@ -95,14 +95,6 @@
|
||||||
# define SCM_SYSCALL(line) line;
|
# define SCM_SYSCALL(line) line;
|
||||||
#endif /* ndef SCM_SYSCALL */
|
#endif /* ndef SCM_SYSCALL */
|
||||||
|
|
||||||
#if !defined (MSDOS) && !defined (__MINGW32__)
|
|
||||||
# ifdef ARM_ULIB
|
|
||||||
extern volatile int errno;
|
|
||||||
# else
|
|
||||||
extern int errno;
|
|
||||||
# endif /* def ARM_ULIB */
|
|
||||||
#endif /* ndef MSDOS && ndef __MINGW32__*/
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#ifndef min
|
#ifndef min
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue