Include system.h only after error.h and readutmp.h
authorJim Meyering <jim@meyering.net>
Mon, 29 Jun 1998 16:23:15 +0000 (16:23 +0000)
committerJim Meyering <jim@meyering.net>
Mon, 29 Jun 1998 16:23:15 +0000 (16:23 +0000)
so we don't get redefinition warnings about getc, etc.
Revert back to using lower case _unlocked wrapper names.

src/uptime.c
src/users.c
src/who.c

index 2bf9a761f8b75614bfa5ffd0ad94cd4adf520557..8ff897e592f5ad03014544596b24522b26f44759 100644 (file)
@@ -1,5 +1,5 @@
 /* GNU's uptime.
-   Copyright (C) 92, 93, 94, 95, 96, 1997 Free Software Foundation, Inc.
+   Copyright (C) 92, 93, 94, 95, 96, 1997, 1998 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
@@ -20,9 +20,9 @@
 #include <config.h>
 #include <getopt.h>
 
-#include "system.h"
 #include "error.h"
 #include "readutmp.h"
+#include "system.h"
 
 /* The name this program was run with. */
 char *program_name;
@@ -66,7 +66,7 @@ print_uptime (int n, const STRUCT_UTMP *this)
       res = sscanf (buf, "%lf", &upsecs);
       if (res == 1)
        uptime = (time_t) upsecs;
-      FCLOSE (fp);
+      fclose (fp);
     }
 #endif /* HAVE_PROC_UPTIME */
   /* Loop through all the utmp entries we just read and count up the valid
@@ -122,7 +122,7 @@ print_uptime (int n, const STRUCT_UTMP *this)
 #endif
 
   if (loads == -1)
-    PUTCHAR ('\n');
+    putchar ('\n');
   else
     {
       if (loads > 0)
@@ -132,7 +132,7 @@ print_uptime (int n, const STRUCT_UTMP *this)
       if (loads > 2)
        printf (", %.2f", avg[2]);
       if (loads > 0)
-       PUTCHAR ('\n');
+       putchar ('\n');
     }
 }
 
index 0d44f6dcf2d77cce413be4a7aac10ef46150a6f8..38eb6cd654f5f49cffce311a780ca603dd51c07b 100644 (file)
@@ -1,5 +1,5 @@
 /* GNU's users.
-   Copyright (C) 92, 93, 94, 95, 96, 1997 Free Software Foundation, Inc.
+   Copyright (C) 92, 93, 94, 95, 96, 1997, 1998 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
@@ -20,9 +20,9 @@
 #include <config.h>
 #include <getopt.h>
 
-#include "system.h"
 #include "error.h"
 #include "readutmp.h"
+#include "system.h"
 
 /* The name this program was run with. */
 char *program_name;
@@ -82,7 +82,7 @@ list_entries_users (int n, const STRUCT_UTMP *this)
       int c;
       fputs (u[i], stdout);
       c = (i < n_entries - 1 ? ' ' : '\n');
-      PUTCHAR (c);
+      putchar (c);
     }
 
   for (i = 0; i < n_entries; i++)
index 519327fe4425f2b93063b4678d3b28c20390a8cd..59f14290c252931bb41a54c9b955fea556d8757d 100644 (file)
--- a/src/who.c
+++ b/src/who.c
@@ -1,5 +1,5 @@
 /* GNU's who.
-   Copyright (C) 92, 93, 94, 95, 96, 1997 Free Software Foundation, Inc.
+   Copyright (C) 92, 93, 94, 95, 96, 1997, 1998 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
@@ -27,9 +27,9 @@
 #include <config.h>
 #include <getopt.h>
 
-#include "system.h"
 #include "error.h"
 #include "readutmp.h"
+#include "system.h"
 
 #ifndef MAXHOSTNAMELEN
 # define MAXHOSTNAMELEN 64
@@ -202,7 +202,7 @@ print_entry (const STRUCT_UTMP *utmp_ent)
     }
 #endif
 
-  PUTCHAR ('\n');
+  putchar ('\n');
 }
 
 /* Print the username of each valid entry and the number of valid entries