From: Kenichi Handa Date: Tue, 21 Nov 2000 23:56:56 +0000 (+0000) Subject: Move the code for declaring h_errno after #include . X-Git-Tag: emacs-pretest-21.0.92~207 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=8581cd642416389b0b1dc52b859b3d17b8adcb25;p=emacs.git Move the code for declaring h_errno after #include . --- diff --git a/src/sysdep.c b/src/sysdep.c index 2a457313a1c..65cb02156b0 100644 --- a/src/sysdep.c +++ b/src/sysdep.c @@ -61,12 +61,6 @@ static int delete_exited_processes; #undef fwrite #endif -#ifdef TRY_AGAIN -#ifndef HAVE_H_ERRNO -extern int h_errno; -#endif -#endif /* TRY_AGAIN */ - #include #include #include @@ -2283,6 +2277,12 @@ extern Lisp_Object Vsystem_name; #endif /* not VMS */ #endif /* not BSD4_1 */ +#ifdef TRY_AGAIN +#ifndef HAVE_H_ERRNO +extern int h_errno; +#endif +#endif /* TRY_AGAIN */ + void init_system_name () {