svn commit: trunk/busybox/coreutils

landley at busybox.net landley at busybox.net
Fri Jul 14 17:59:38 UTC 2006


Author: landley
Date: 2006-07-14 10:59:36 -0700 (Fri, 14 Jul 2006)
New Revision: 15695

Log:
Patch from Suresh Rajashekara moving comments and #includes and such around.


Modified:
   trunk/busybox/coreutils/date.c


Changeset:
Modified: trunk/busybox/coreutils/date.c
===================================================================
--- trunk/busybox/coreutils/date.c	2006-07-13 17:26:01 UTC (rev 15694)
+++ trunk/busybox/coreutils/date.c	2006-07-14 17:59:36 UTC (rev 15695)
@@ -9,14 +9,6 @@
  * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
 */
 
-#include <stdlib.h>
-#include <errno.h>
-#include <unistd.h>
-#include <time.h>
-#include <stdio.h>
-#include <string.h>
-#include "busybox.h"
-
 /* This 'date' command supports only 2 time setting formats,
    all the GNU strftime stuff (its in libc, lets use it),
    setting time using UTC and displaying int, as well as
@@ -28,6 +20,23 @@
 
 /* Default input handling to save surprising some people */
 
+#include <stdlib.h>
+#include <errno.h>
+#include <unistd.h>
+#include <time.h>
+#include <stdio.h>
+#include <string.h>
+#include "busybox.h"
+
+#define DATE_OPT_RFC2822	0x01
+#define DATE_OPT_SET		0x02
+#define DATE_OPT_UTC		0x04
+#define DATE_OPT_DATE		0x08
+#define DATE_OPT_REFERENCE	0x10
+#define DATE_OPT_TIMESPEC	0x20
+#define DATE_OPT_HINT		0x40
+
+
 static struct tm *date_conv_time(struct tm *tm_time, const char *t_string)
 {
 	int nr;
@@ -103,14 +112,6 @@
 	return (tm_time);
 }
 
-#define DATE_OPT_RFC2822	0x01
-#define DATE_OPT_SET		0x02
-#define DATE_OPT_UTC		0x04
-#define DATE_OPT_DATE		0x08
-#define DATE_OPT_REFERENCE	0x10
-#define DATE_OPT_TIMESPEC	0x20
-#define DATE_OPT_HINT		0x40
-
 int date_main(int argc, char **argv)
 {
 	char *date_str = NULL;




More information about the busybox-cvs mailing list