diff options
author | Jim Meyering <jim@meyering.net> | 2003-04-11 11:42:39 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-04-11 11:42:39 +0000 |
commit | 2033d5e885059740d6d0a9c5946246cd80b4b3d3 (patch) | |
tree | 6551257b6d3822bf4ae4c692200771f401fae097 | |
parent | d5d5c4fc6811bc97d9099904269b4d099a6095af (diff) | |
download | coreutils-2033d5e885059740d6d0a9c5946246cd80b4b3d3.tar.xz |
Include error.h after system.h, not before.
-rw-r--r-- | src/yes.c | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -1,5 +1,5 @@ /* yes - output a string repeatedly until killed - Copyright (C) 1991-1997, 1999-2002 Free Software Foundation, Inc. + Copyright (C) 1991-1997, 1999-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 @@ -22,10 +22,11 @@ #include <sys/types.h> #include <getopt.h> -#include "error.h" #include "system.h" -#include "long-options.h" + #include "closeout.h" +#include "error.h" +#include "long-options.h" /* The official name of this program (e.g., no `g' prefix). */ #define PROGRAM_NAME "yes" |