diff options
author | Jim Meyering <jim@meyering.net> | 1999-02-08 03:29:36 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1999-02-08 03:29:36 +0000 |
commit | 2dc3a543b106c33680daf01e1118eb411a07edcf (patch) | |
tree | a756c905b379aa4b321e68edd250471b19dcb15e /src/uptime.c | |
parent | f7bb13ecd8980a93f05c8d39ad07325a062dafec (diff) | |
download | coreutils-2dc3a543b106c33680daf01e1118eb411a07edcf.tar.xz |
Include stdio.h.
Diffstat (limited to 'src/uptime.c')
-rw-r--r-- | src/uptime.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/uptime.c b/src/uptime.c index 352f0ab4b..993f3fbfd 100644 --- a/src/uptime.c +++ b/src/uptime.c @@ -1,5 +1,5 @@ /* GNU's uptime. - Copyright (C) 92, 93, 94, 95, 96, 1997, 1998, 1999 Free Software Foundation, Inc. + Copyright (C) 1992-1999 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 @@ -19,6 +19,7 @@ #include <config.h> #include <getopt.h> +#include <stdio.h> #include "error.h" #include "readutmp.h" |