diff options
author | Jim Meyering <jim@meyering.net> | 2007-03-28 08:34:03 +0200 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2007-03-28 08:34:03 +0200 |
commit | 2fa23f1f86ddc57e4b7bf2453e75a9e54ba60d2b (patch) | |
tree | 4b5e3d3cf566c3de2f1c9c3d7f2ff73577d24dc7 | |
parent | 311b6df3447e33863c94ab6ce9eed15e3ee696ac (diff) | |
download | coreutils-2fa23f1f86ddc57e4b7bf2453e75a9e54ba60d2b.tar.xz |
* src/stty.c: Don't include "vasprintf.h", now that its
declarations are guaranteed to be in gnulib's stdio.h.
* src/who.c: Likewise.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | src/stty.c | 3 | ||||
-rw-r--r-- | src/who.c | 3 |
3 files changed, 8 insertions, 4 deletions
@@ -1,3 +1,9 @@ +2007-03-28 Jim Meyering <jim@meyering.net> + + * src/stty.c: Don't include "vasprintf.h", now that its + declarations are guaranteed to be in gnulib's stdio.h. + * src/who.c: Likewise. + 2007-03-27 Jim Meyering <jim@meyering.net> * README: Use "install", not "ginstall" in the list of program names. diff --git a/src/stty.c b/src/stty.c index 33a821d25..86a4bab45 100644 --- a/src/stty.c +++ b/src/stty.c @@ -1,5 +1,5 @@ /* stty -- change and print terminal line settings - Copyright (C) 1990-2005 Free Software Foundation, Inc. + Copyright (C) 1990-2005, 2007 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 @@ -62,7 +62,6 @@ #include "error.h" #include "fd-reopen.h" #include "quote.h" -#include "vasprintf.h" #include "xstrtol.h" /* The official name of this program (e.g., no `g' prefix). */ @@ -1,5 +1,5 @@ /* GNU's who. - Copyright (C) 1992-2006 Free Software Foundation, Inc. + Copyright (C) 1992-2007 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 @@ -37,7 +37,6 @@ #include "hard-locale.h" #include "inttostr.h" #include "quote.h" -#include "vasprintf.h" /* The official name of this program (e.g., no `g' prefix). */ #define PROGRAM_NAME "who" |