2001-03-17 06:47:14 +08:00
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
2004-04-15 01:51:38 +08:00
|
|
|
* warn_ignoring_args implementation for busybox
|
2001-03-17 06:47:14 +08:00
|
|
|
*
|
2003-03-19 17:13:01 +08:00
|
|
|
* Copyright (C) 2003 Manuel Novoa III <mjn3@codepoet.org>
|
2001-03-17 06:47:14 +08:00
|
|
|
*
|
2006-07-10 19:41:19 +08:00
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
2001-03-17 06:47:14 +08:00
|
|
|
*/
|
|
|
|
|
2003-03-19 17:13:01 +08:00
|
|
|
#include <libbb.h>
|
2001-03-17 06:47:14 +08:00
|
|
|
|
2006-03-07 04:47:33 +08:00
|
|
|
void bb_warn_ignoring_args(int n)
|
2001-03-17 06:47:14 +08:00
|
|
|
{
|
2003-03-19 17:13:01 +08:00
|
|
|
if (n) {
|
2006-09-08 00:20:03 +08:00
|
|
|
bb_error_msg("ignoring all arguments");
|
2001-03-17 06:47:14 +08:00
|
|
|
}
|
|
|
|
}
|