Header cleanup on two more networking files (move libbb.h to the top and
[oweals/busybox.git] / coreutils / true.c
index 9644aad4a07565a57b3654a79faa9dca9875d929..1f276861519c487516ba260c25992a6d7d7a7260 100644 (file)
@@ -2,8 +2,7 @@
 /*
  * Mini true implementation for busybox
  *
- * Copyright (C) 1999,2000 by Lineo, inc. and Erik Andersen
- * Copyright (C) 1999,2000,2001 by Erik Andersen <andersee@debian.org>
+ * 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
  *
  */
 
-/* getopt not needed */
+/* BB_AUDIT SUSv3 compliant */
+/* http://www.opengroup.org/onlinepubs/007904975/utilities/true.html */
 
 #include <stdlib.h>
 #include "busybox.h"
 
-extern int true_main(int argc, char **argv)
+int true_main(int argc, char **argv)
 {
        return EXIT_SUCCESS;
 }