From 0cb47363e177e9687a7f86de3880010b01b50c85 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Sat, 4 Jun 1994 05:24:48 +0000 Subject: Put #include of errno.h and decl of errno before #ifndef HAVE_GETLOADAVG. --- getloadavg.c | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) (limited to 'getloadavg.c') diff --git a/getloadavg.c b/getloadavg.c index 03b4de0..0f730a7 100644 --- a/getloadavg.c +++ b/getloadavg.c @@ -1,5 +1,5 @@ /* Get the system load averages. - Copyright (C) 1985, 86, 87, 88, 89, 91, 92, 93 + Copyright (C) 1985, 86, 87, 88, 89, 91, 92, 93, 1994 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify @@ -80,9 +80,17 @@ #endif #endif - /* Exclude all the code except the test program at the end - if the system has its own `getloadavg' function. */ + if the system has its own `getloadavg' function. + + The declaration of `errno' is needed by the test program + as well as the function itself, so it comes first. */ + +#include + +#ifndef errno +extern int errno; +#endif #ifndef HAVE_GETLOADAVG @@ -331,11 +339,6 @@ #endif #include -#include - -#ifndef errno -extern int errno; -#endif /* LOAD_AVE_TYPE should only get defined if we're going to use the nlist method. */ -- cgit v1.2.3