Use __unused macro instead of a bare void for main().

Suggested by:	nectar
This commit is contained in:
Xin LI 2005-01-04 20:07:12 +00:00
parent 9833f74761
commit 51c86fb583
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=139685

View File

@ -34,7 +34,7 @@ __FBSDID("$FreeBSD$");
#define MESSAGE "This account is currently not available.\n" #define MESSAGE "This account is currently not available.\n"
int int
main(void) main(__unused int argc, __unused char *argv[])
{ {
const char *user, *tt; const char *user, *tt;