diff options
author | jofret | 2007-04-18 16:56:05 +0000 |
---|---|---|
committer | jofret | 2007-04-18 16:56:05 +0000 |
commit | 4df32b1ac3af8b5b65f0c69b8ffc9c35cfa9fe8b (patch) | |
tree | 322228b97a053df252a09bb49bdc682bf46c5eb2 /src | |
parent | c5bfd436e5128eb1c2188104f5dab5dabe35bbd6 (diff) | |
download | scilab2c-4df32b1ac3af8b5b65f0c69b8ffc9c35cfa9fe8b.tar.gz scilab2c-4df32b1ac3af8b5b65f0c69b8ffc9c35cfa9fe8b.tar.bz2 scilab2c-4df32b1ac3af8b5b65f0c69b8ffc9c35cfa9fe8b.zip |
Moving constants management
Diffstat (limited to 'src')
-rw-r--r-- | src/includes/constant.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/includes/constant.h b/src/includes/constant.h new file mode 100644 index 00000000..473ea6a2 --- /dev/null +++ b/src/includes/constant.h @@ -0,0 +1,19 @@ +/* +** -*- C -*- +** +** constant.h +** Made by Bruno JOFRET <bruno.jofret@inria.fr> +** +** Started on Fri Mar 30 12:03:14 2007 jofret +** Last update Fri Mar 30 12:03:48 2007 jofret +** +** Copyright INRIA 2007 +*/ + +#ifndef _CONSTANT_H_ +#define _CONSTANT_H_ + +#define PI 3.1415826535 + +#endif /* !_CONSTANT_H_ */ + |