00001 /******************************************************* 00002 * 00003 * Author: Shinsaku Hiura, Hirokazu Kato 00004 * 00005 * shinsaku@sys.es.osaka-u.ac.jp 00006 * kato@sys.im.hiroshima-cu.ac.jp 00007 * 00008 * Revision: 2.1 00009 * Date: 99/07/16 00010 * 00011 *******************************************************/ 00012 00013 #include <stdio.h> 00014 #include <math.h> 00015 #ifndef __APPLE__ 00016 #include <malloc.h> 00017 #else 00018 #include <stdlib.h> 00019 #endif 00020 #include <AR/matrix.h> 00021 00022 int arVecFree( ARVec *v ) 00023 { 00024 free( v->v ); 00025 free( v ); 00026 00027 return 0; 00028 }