From: Andrew Innes Date: Tue, 22 Aug 2000 22:41:55 +0000 (+0000) Subject: (write_segment) [USE_CRT_DLL]: Remove unnecessary X-Git-Tag: emacs-pretest-21.0.90~2037 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a5e73edce64c7ce518eb84d9bae019ab2e18ead8;p=emacs.git (write_segment) [USE_CRT_DLL]: Remove unnecessary extern, which screws up dllimport attributes. --- diff --git a/src/unexec.c b/src/unexec.c index 7dac7323ff3..fb00c27e54b 100644 --- a/src/unexec.c +++ b/src/unexec.c @@ -1067,7 +1067,9 @@ write_segment (new, ptr, end) { register int i, nwrite, ret; char buf[80]; +#ifndef USE_CRT_DLL extern int errno; +#endif /* This is the normal amount to write at once. It is the size of block that NFS uses. */ int writesize = 1 << 13;