Commit 3a6d8af5 authored by Jason Madden's avatar Jason Madden

whitespace

parent 01b65fc5
......@@ -39,7 +39,7 @@ static char TimeStampModule_doc[] =
#define TS_MINUTES_PER_YEAR (TS_MINUTES_PER_MONTH * TS_MONTHS_PER_YEAR)
#define TS_PACK_UNSIGNED_INTO_BYTES(v, bytes) do { \
*(bytes) = v / 0x1000000; \
*(bytes) = v / 0x1000000; \
*(bytes + 1) = (v % 0x1000000) / 0x10000; \
*(bytes + 2) = (v % 0x10000) / 0x100; \
*(bytes + 3) = v % 0x100; \
......@@ -93,8 +93,6 @@ days_in_month(int year, int month)
return month_len[leap(year)][month];
}
static double
TimeStamp_yad(int y)
{
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment