Subversion Repositories AndroidProjects

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
204 chris 1
/*******************************************************
2
 *
3
 * Author: Shinsaku Hiura, Hirokazu Kato
4
 *
5
 *         shinsaku@sys.es.osaka-u.ac.jp
6
 *         kato@sys.im.hiroshima-cu.ac.jp
7
 *
8
 * Revision: 2.1
9
 * Date: 99/07/16
10
 *
11
*******************************************************/
12
 
13
#include <stdio.h>
14
#include <math.h>
15
#ifndef __APPLE__
16
#include <malloc.h>
17
#else
18
#include <stdlib.h>
19
#endif
20
#include <AR/matrix.h>
21
 
22
int arVecFree( ARVec *v )
23
{
24
    free( v->v );
25
    free( v );
26
 
27
    return 0;
28
}