[BACK]Return to test.c CVS log [TXT][DIR] Up to [local] / OpenXM / src / util

Diff for /OpenXM/src/util/test.c between version 1.7 and 1.8

version 1.7, 2004/08/12 12:11:41 version 1.8, 2015/10/13 10:16:53
Line 1 
Line 1 
 /* $OpenXM: OpenXM/src/util/test.c,v 1.6 2004/03/02 06:23:34 takayama Exp $ */  /* $OpenXM: OpenXM/src/util/test.c,v 1.7 2004/08/12 12:11:41 takayama Exp $ */
 #include <stdio.h>  #include <stdio.h>
 #include "ox_pathfinder.h"  #include "ox_pathfinder.h"
   
 sGC_malloc(int a) {  sGC_malloc(int a) {
   return GC_malloc(a);    //  return GC_malloc(a);
     return malloc(a);
 }  }
   
 main() {  main() {
     main_3();
   }
   // getFieSize is for main_3
   #include <sys/stat.h>
   static int getFileSize(char *s) {
      struct stat buf;
      int m;
      if (s == NULL) return -1;
      m = stat(s,&buf);
      if (m == -1) {
        return -1;
         /* fail */
      }else{
         /* success */
        return (int) buf.st_size;
      }
   }
   main_3() {
     int m;
     m=getFileSize("/cygdrive/c/windows/system32/cmd.exe");
     printf("m=%d\n",m);
   }
   main_2() {
   int n;    int n;
   /*    /*
   n = oxpSendStringAsFile((char *)getenv("USER"),    n = oxpSendStringAsFile((char *)getenv("USER"),

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.8

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