From: Gerd Moellmann Date: Fri, 29 Jun 2001 22:09:24 +0000 (+0000) Subject: (main): Remove extern declaration for sys_nerr, which X-Git-Tag: emacs-pretest-21.0.104~105 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d827466ca2b9327142d44b88e1ec7aba75890824;p=emacs.git (main): Remove extern declaration for sys_nerr, which isn't used and causes a compilation error with GCC 3.0 on FreeBSD 4.3. --- diff --git a/src/ChangeLog b/src/ChangeLog index 5012ea7441d..0bfccb76ce7 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,9 @@ +2001-06-30 Gerd Moellmann + + * emacs.c (main): Remove extern declaration for sys_nerr, which + isn't used and causes a compilation error with GCC 3.0 on + FreeBSD 4.3. + 2001-06-27 Gerd Moellmann * widget.c (EmacsFrameSetCharSize): Turn off atimers and block diff --git a/src/emacs.c b/src/emacs.c index 00812cfbbba..ff97369a33a 100644 --- a/src/emacs.c +++ b/src/emacs.c @@ -712,7 +712,6 @@ main (argc, argv, envp) int skip_args = 0; #ifndef USE_CRT_DLL extern int errno; - extern int sys_nerr; #endif #ifdef HAVE_SETRLIMIT struct rlimit rlim;