diff options
author | aldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-01-30 17:17:14 +0000 |
---|---|---|
committer | aldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-01-30 17:17:14 +0000 |
commit | e3206585f41ad674d5d6f9f04f4cb50efdc21119 (patch) | |
tree | c47584ea54140cdd66f0833c8202875e8f4fe844 /libbb | |
parent | 1384f29bcb54c994159c68508b9c359d7d2abc6a (diff) | |
download | busybox-w32-e3206585f41ad674d5d6f9f04f4cb50efdc21119.tar.gz busybox-w32-e3206585f41ad674d5d6f9f04f4cb50efdc21119.tar.bz2 busybox-w32-e3206585f41ad674d5d6f9f04f4cb50efdc21119.zip |
- add some ATTRIBUTE_UNUSED.
- use shorter boilerplate while at it.
git-svn-id: svn://busybox.net/trunk/busybox@13718 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/bb_askpass.c | 18 | ||||
-rw-r--r-- | libbb/bb_echo.c | 16 |
2 files changed, 6 insertions, 28 deletions
diff --git a/libbb/bb_askpass.c b/libbb/bb_askpass.c index 42ccd66d3..65ddd5a24 100644 --- a/libbb/bb_askpass.c +++ b/libbb/bb_askpass.c | |||
@@ -5,19 +5,7 @@ | |||
5 | * | 5 | * |
6 | * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org> | 6 | * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org> |
7 | * | 7 | * |
8 | * This program is free software; you can redistribute it and/or modify | 8 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
9 | * it under the terms of the GNU General Public License as published by | ||
10 | * the Free Software Foundation; either version 2 of the License, or | ||
11 | * (at your option) any later version. | ||
12 | * | ||
13 | * This program is distributed in the hope that it will be useful, | ||
14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
16 | * General Public License for more details. | ||
17 | * | ||
18 | * You should have received a copy of the GNU General Public License | ||
19 | * along with this program; if not, write to the Free Software | ||
20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
21 | */ | 9 | */ |
22 | 10 | ||
23 | #include <stdio.h> | 11 | #include <stdio.h> |
@@ -27,11 +15,13 @@ | |||
27 | #include <signal.h> | 15 | #include <signal.h> |
28 | #include <termios.h> | 16 | #include <termios.h> |
29 | #include <sys/ioctl.h> | 17 | #include <sys/ioctl.h> |
18 | |||
19 | #include "libbb.h" | ||
30 | #define PWD_BUFFER_SIZE 256 | 20 | #define PWD_BUFFER_SIZE 256 |
31 | 21 | ||
32 | 22 | ||
33 | /* do nothing signal handler */ | 23 | /* do nothing signal handler */ |
34 | static void askpass_timeout(int ignore) | 24 | static void askpass_timeout(int ATTRIBUTE_UNUSED ignore) |
35 | { | 25 | { |
36 | } | 26 | } |
37 | 27 | ||
diff --git a/libbb/bb_echo.c b/libbb/bb_echo.c index 387ee9669..41e6e4915 100644 --- a/libbb/bb_echo.c +++ b/libbb/bb_echo.c | |||
@@ -5,19 +5,7 @@ | |||
5 | * Copyright (c) 1991, 1993 | 5 | * Copyright (c) 1991, 1993 |
6 | * The Regents of the University of California. All rights reserved. | 6 | * The Regents of the University of California. All rights reserved. |
7 | * | 7 | * |
8 | * This program is free software; you can redistribute it and/or modify | 8 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
9 | * it under the terms of the GNU General Public License as published by | ||
10 | * the Free Software Foundation; either version 2 of the License, or | ||
11 | * (at your option) any later version. | ||
12 | * | ||
13 | * This program is distributed in the hope that it will be useful, | ||
14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
16 | * General Public License for more details. | ||
17 | * | ||
18 | * You should have received a copy of the GNU General Public License | ||
19 | * along with this program; if not, write to the Free Software | ||
20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
21 | * | 9 | * |
22 | * Original copyright notice is retained at the end of this file. | 10 | * Original copyright notice is retained at the end of this file. |
23 | */ | 11 | */ |
@@ -40,7 +28,7 @@ | |||
40 | #include <string.h> | 28 | #include <string.h> |
41 | #include "busybox.h" | 29 | #include "busybox.h" |
42 | 30 | ||
43 | extern int bb_echo(int argc, char** argv) | 31 | extern int bb_echo(int ATTRIBUTE_UNUSED argc, char **argv) |
44 | { | 32 | { |
45 | #ifndef CONFIG_FEATURE_FANCY_ECHO | 33 | #ifndef CONFIG_FEATURE_FANCY_ECHO |
46 | #define eflag '\\' | 34 | #define eflag '\\' |