diff --git a/ChangeLog b/ChangeLog index 453f41a04..982c91df0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2004-03-02 Adam Fedor + + * Source/NSCalendarDate.m (dayOfCommonEra): Make non-static. + 2004-03-01 * Headers/Additions/GNUstepBase/GSIMap.h: Added increment ivar to GSIMapTable diff --git a/Source/NSCalendarDate.m b/Source/NSCalendarDate.m index 1594ac620..486c6d196 100644 --- a/Source/NSCalendarDate.m +++ b/Source/NSCalendarDate.m @@ -179,7 +179,10 @@ absoluteGregorianDay(int day, int month, int year) + (year - 1)/400); // ...plus prior years divisible by 400 } -static int dayOfCommonEra(NSTimeInterval when) +/* Should be static, but temporarily changed to non-static until + WIndows fixes are done. */ +int +dayOfCommonEra(NSTimeInterval when) { double a; int r;