diff options
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/chgrp.c | 23 | ||||
-rw-r--r-- | coreutils/chmod.c | 8 | ||||
-rw-r--r-- | coreutils/chown.c | 8 | ||||
-rw-r--r-- | coreutils/df.c | 23 | ||||
-rw-r--r-- | coreutils/id.c | 25 |
5 files changed, 3 insertions, 84 deletions
diff --git a/coreutils/chgrp.c b/coreutils/chgrp.c index 70ac672c2..46db4081a 100644 --- a/coreutils/chgrp.c +++ b/coreutils/chgrp.c @@ -4,20 +4,7 @@ * * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org> * - * 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 - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - * + * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. */ /* BB_AUDIT SUSv3 defects - unsupported options -h, -H, -L, and -P. */ @@ -71,11 +58,3 @@ int chgrp_main(int argc, char **argv) return retval; } - -/* -Local Variables: -c-file-style: "linux" -c-basic-offset: 4 -tab-width: 4 -End: -*/ diff --git a/coreutils/chmod.c b/coreutils/chmod.c index b69cccdf1..c871ad10e 100644 --- a/coreutils/chmod.c +++ b/coreutils/chmod.c @@ -89,11 +89,3 @@ int chmod_main(int ATTRIBUTE_UNUSED argc, char **argv) return retval; } - -/* -Local Variables: -c-file-style: "linux" -c-basic-offset: 4 -tab-width: 4 -End: -*/ diff --git a/coreutils/chown.c b/coreutils/chown.c index 66add48ed..bb379ac20 100644 --- a/coreutils/chown.c +++ b/coreutils/chown.c @@ -76,11 +76,3 @@ int chown_main(int argc, char **argv) return retval; } - -/* -Local Variables: -c-file-style: "linux" -c-basic-offset: 4 -tab-width: 4 -End: -*/ diff --git a/coreutils/df.c b/coreutils/df.c index bd487ee95..17ce634a7 100644 --- a/coreutils/df.c +++ b/coreutils/df.c @@ -5,20 +5,7 @@ * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org> * based on original code by (I think) Bruce Perens <bruce@pixar.com>. * - * 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 - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - * + * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. */ /* BB_AUDIT SUSv3 _NOT_ compliant -- options -P and -t missing. Also blocksize. */ @@ -160,11 +147,3 @@ int df_main(int argc, char **argv) bb_fflush_stdout_and_exit(status); } - -/* -Local Variables: -c-file-style: "linux" -c-basic-offset: 4 -tab-width: 4 -End: -*/ diff --git a/coreutils/id.c b/coreutils/id.c index 73c3c2e3b..1bedff37a 100644 --- a/coreutils/id.c +++ b/coreutils/id.c @@ -4,20 +4,7 @@ * * Copyright (C) 2000 by Randolph Chung <tausq@debian.org> * - * 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 - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - * + * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. */ /* BB_AUDIT SUSv3 _NOT_ compliant -- option -G is not currently supported. */ @@ -123,13 +110,3 @@ int id_main(int argc, char **argv) putchar('\n'); bb_fflush_stdout_and_exit(status); } - -/* END CODE */ -/* -Local Variables: -c-file-style: "linux" -c-basic-offset: 4 -tab-width: 4 -End: -*/ - |