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

File: [local] / OpenXM / src / util / test.c (download)

Revision 1.2, Sun Nov 16 07:14:44 2003 UTC (20 years, 6 months ago) by takayama
Branch: MAIN
Changes since 1.1: +1 -0 lines

Added the tag OpenXM

/* $OpenXM: OpenXM/src/util/test.c,v 1.2 2003/11/16 07:14:44 takayama Exp $ */
#include <stdio.h>
#include "ox_pathfinder.h"

sGC_malloc(int a) {
  return GC_malloc(a);
}

/* which command */
main(int argc,char *argv[]) {
  if (argc != 2) {
	fprintf(stderr,"test cmdname");
  }
  printf("%s\n",getCommandPath(argv[1]));
}