diff options
Diffstat (limited to 'src/auxiliaryFunctions/find/dfinda.c')
-rw-r--r-- | src/auxiliaryFunctions/find/dfinda.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/auxiliaryFunctions/find/dfinda.c b/src/auxiliaryFunctions/find/dfinda.c new file mode 100644 index 00000000..8241a792 --- /dev/null +++ b/src/auxiliaryFunctions/find/dfinda.c @@ -0,0 +1,18 @@ +/* +** -*- C -*- +** +** dfinda.c +** Made by Bruno JOFRET <bruno.jofret@inria.fr> +** +** Started on Tue Feb 13 16:52:23 2007 jofret +** Last update Tue Feb 13 17:13:40 2007 jofret +** +** Copyright INRIA 2007 +*/ + +#include "notFound.h" + +int dfinda(double* x, int size) { + /* FIXME : Dummy !! */ + return NOT_FOUND; +} |