1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 14:00:21 +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:
Neil Jerram 2008-02-27 23:00:37 +00:00
parent d53f85dd85
commit fa80e2809e
3 changed files with 9 additions and 9 deletions

2
NEWS
View file

@ -47,7 +47,7 @@ Previously, expressions like `(match '((foo) (bar)) (((_ ...) ...) #t))'
would trigger an unbound variable error for `match:andmap'.
** 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
* Changes to the distribution

View file

@ -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>
* numbers.c (scm_make_rectangular): Rename argument to

View file

@ -95,14 +95,6 @@
# define SCM_SYSCALL(line) line;
#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