comparison src/scalar.c @ 88:525bfdf936c6

Added java bindings. Everything seems to work OK, except test.java won't compile. Some kind of path error, but I can't work out how to fix it.
author Jamie Bullock <jamie@postlude.co.uk>
date Wed, 05 Sep 2007 14:32:17 +0000
parents 0df00d5c9269
children 35a3bb5c3ffd
comparison
equal deleted inserted replaced
87:0df00d5c9269 88:525bfdf936c6
34 34
35 #ifndef expf 35 #ifndef expf
36 #define expf exp 36 #define expf exp
37 #endif 37 #endif
38 38
39 int test(void){
40 printf("Hello world");
41 }
42
39 int xtract_mean(const float *data, const int N, const void *argv, float *result){ 43 int xtract_mean(const float *data, const int N, const void *argv, float *result){
40 44
41 int n = N; 45 int n = N;
42 46
43 *result = 0.f; 47 *result = 0.f;