From 8581cd642416389b0b1dc52b859b3d17b8adcb25 Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Tue, 21 Nov 2000 23:56:56 +0000 Subject: [PATCH] Move the code for declaring h_errno after #include . --- src/sysdep.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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 () { -- 2.39.2