[BACK]Return to io.c CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2000 / io

Diff for /OpenXM_contrib2/asir2000/io/io.c between version 1.13 and 1.14

version 1.13, 2009/03/13 04:45:16 version 1.14, 2009/03/16 16:43:03
Line 44 
Line 44 
  * OF THE SOFTWARE HAS BEEN DEVELOPED BY A THIRD PARTY, THE THIRD PARTY   * OF THE SOFTWARE HAS BEEN DEVELOPED BY A THIRD PARTY, THE THIRD PARTY
  * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,   * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,
  * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.   * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.
  * $OpenXM: OpenXM_contrib2/asir2000/io/io.c,v 1.12 2003/03/07 06:39:57 noro Exp $   * $OpenXM: OpenXM_contrib2/asir2000/io/io.c,v 1.13 2009/03/13 04:45:16 ohara Exp $
 */  */
 #include <stdio.h>  #include <stdio.h>
 #include "ca.h"  #include "ca.h"
Line 263  void write_intarray(FILE *f,unsigned int *p,int l)
Line 263  void write_intarray(FILE *f,unsigned int *p,int l)
                 gen_fwrite((char *)p,sizeof(unsigned int),l,f);                  gen_fwrite((char *)p,sizeof(unsigned int),l,f);
 }  }
   
 #if defined(LONG_IS_64BIT)  #if SIZEOF_LONG == 8
 void write_longarray(FILE *f,unsigned long *p,int l)  void write_longarray(FILE *f,unsigned long *p,int l)
 {  {
         int i;          int i;
Line 353  void read_intarray(FILE *f,unsigned int *p,int l)
Line 353  void read_intarray(FILE *f,unsigned int *p,int l)
         }          }
 }  }
   
 #if defined(LONG_IS_64BIT)  #if SIZEOF_LONG == 8
 void read_longarray(FILE *f,unsigned long *p,int l)  void read_longarray(FILE *f,unsigned long *p,int l)
 {  {
         int i;          int i;

Legend:
Removed from v.1.13  
changed lines
  Added in v.1.14

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>