Various cleanups I made while going through Erik Hovland's patch submissions,
[oweals/busybox.git] / networking / udhcp / dumpleases.c
index a9036dfbdf5930f7d02e498d35154dd3e77b8170..08a22f17d2fa7ac668065eee5fbdef6d20f21f46 100644 (file)
@@ -1,3 +1,7 @@
+/* vi: set sw=4 ts=4: */
+/*
+ * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
+ */
 #include <fcntl.h>
 #include <string.h>
 #include <stdlib.h>
 
 
 #ifndef IN_BUSYBOX
-static void __attribute__ ((noreturn)) show_usage(void)
+static void ATTRIBUTE_NORETURN show_usage(void)
 {
        printf(
 "Usage: dumpleases -f <file> -[r|a]\n\n"
 "  -f, --file=FILENAME             Leases file to load\n"
-"  -r, --remaining                 Interepret lease times as time remaing\n"
+"  -r, --remaining                 Interepret lease times as time remaining\n"
 "  -a, --absolute                  Interepret lease times as expire time\n");
        exit(0);
 }