diff options
author | Jim Meyering <jim@meyering.net> | 2003-08-15 06:43:16 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-08-15 06:43:16 +0000 |
commit | 60886b408a47784571ba50fd6b17590c359f22c4 (patch) | |
tree | 3bef21bc3c46b2a01e5c5d57d83794b79687a32e /lib | |
parent | 10cd173e5c9dee1c75ad52d0f70a4d8de1bc4aa0 (diff) | |
download | coreutils-60886b408a47784571ba50fd6b17590c359f22c4.tar.xz |
Include "physmem.h" before system includes.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/physmem.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/physmem.c b/lib/physmem.c index 7aa547425..4f192d11b 100644 --- a/lib/physmem.c +++ b/lib/physmem.c @@ -1,5 +1,5 @@ /* Calculate the size of physical memory. - Copyright 2000, 2001, 2003 Free Software Foundation, Inc. + Copyright (C) 2000, 2001, 2003 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -21,6 +21,8 @@ # include <config.h> #endif +#include "physmem.h" + #if HAVE_UNISTD_H # include <unistd.h> #endif @@ -76,8 +78,6 @@ typedef struct typedef WINBOOL (WINAPI *PFN_MS_EX) (lMEMORYSTATUSEX*); #endif -#include "physmem.h" - #define ARRAY_SIZE(a) (sizeof (a) / sizeof ((a)[0])) /* Return the total amount of physical memory. */ |