cvs-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Cvs-cvs] ccvs/lib ChangeLog libcvs.dsp strtoimax.c


From: Jim Hyslop
Subject: [Cvs-cvs] ccvs/lib ChangeLog libcvs.dsp strtoimax.c
Date: Thu, 22 Jun 2006 17:28:57 +0000

CVSROOT:        /cvsroot/cvs
Module name:    ccvs
Changes by:     Jim Hyslop <jhyslop>    06/06/22 17:28:56

Modified files:
        lib            : ChangeLog libcvs.dsp strtoimax.c 

Log message:
                * libcvs.dsp: removed strto?max.c (moved to Windows-specific
                files in ../windows-NT)
                * libcvs.dep, libcvs.mak: regenerated for libcvs.dsp changes
                * strtoimax.c: backed out change introduced on June 11, since it

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/ccvs/lib/ChangeLog?cvsroot=cvs&r1=1.514&r2=1.515
http://cvs.savannah.gnu.org/viewcvs/ccvs/lib/libcvs.dsp?cvsroot=cvs&r1=1.32&r2=1.33
http://cvs.savannah.gnu.org/viewcvs/ccvs/lib/strtoimax.c?cvsroot=cvs&r1=1.3&r2=1.4

Patches:
Index: ChangeLog
===================================================================
RCS file: /cvsroot/cvs/ccvs/lib/ChangeLog,v
retrieving revision 1.514
retrieving revision 1.515
diff -u -b -r1.514 -r1.515
--- ChangeLog   19 Jun 2006 17:45:58 -0000      1.514
+++ ChangeLog   22 Jun 2006 17:28:56 -0000      1.515
@@ -1,3 +1,11 @@
+2006-06-22  Jim Hyslop <address@hidden>
+
+       * libcvs.dsp: removed strto?max.c (moved to Windows-specific
+       files in ../windows-NT)
+       * libcvs.dep, libcvs.mak: regenerated for libcvs.dsp changes
+       * strtoimax.c: backed out change introduced on June 11, since it
+       can potentially break things
+
 2006-06-19  Mark D. Baushke  <address@hidden>
 
        * Makefile.gnulib, alloca_.h, getdate.y, size_max.h, stdint_.h,

Index: libcvs.dsp
===================================================================
RCS file: /cvsroot/cvs/ccvs/lib/libcvs.dsp,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -b -r1.32 -r1.33
--- libcvs.dsp  14 Jun 2006 19:43:38 -0000      1.32
+++ libcvs.dsp  22 Jun 2006 17:28:56 -0000      1.33
@@ -269,14 +269,6 @@
 # End Source File
 # Begin Source File
 
-SOURCE=.\strtoimax.c
-# End Source File
-# Begin Source File
-
-SOURCE=.\strtoumax.c
-# End Source File
-# Begin Source File
-
 SOURCE=.\tempname.c
 # End Source File
 # Begin Source File

Index: strtoimax.c
===================================================================
RCS file: /cvsroot/cvs/ccvs/lib/strtoimax.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -b -r1.3 -r1.4
--- strtoimax.c 12 Jun 2006 02:33:47 -0000      1.3
+++ strtoimax.c 22 Jun 2006 17:28:56 -0000      1.4
@@ -69,7 +69,7 @@
   if (sizeof (INT) != sizeof (long int))
     return strtoll (ptr, endptr, base);
 #else
-  verify (sizeof (INT) >= sizeof (long int));
+  verify (sizeof (INT) == sizeof (long int));
 #endif
 
   return strtol (ptr, endptr, base);




reply via email to

[Prev in Thread] Current Thread [Next in Thread]