diff options
| author | Mattias Andrée <maandree@kth.se> | 2017-07-16 00:59:42 +0200 |
|---|---|---|
| committer | Mattias Andrée <maandree@kth.se> | 2017-07-16 00:59:42 +0200 |
| commit | c216ac3049102422a41ba2c9476b0dbf4f3e4034 (patch) | |
| tree | 809793e1f01fafcb67422f654b6e9dbcab897660 /src/define-functions.h | |
| parent | Install the scripts (diff) | |
| download | blind-c216ac3049102422a41ba2c9476b0dbf4f3e4034.tar.gz blind-c216ac3049102422a41ba2c9476b0dbf4f3e4034.tar.bz2 blind-c216ac3049102422a41ba2c9476b0dbf4f3e4034.tar.xz | |
Use #include instead of #define
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
| -rw-r--r-- | src/define-functions.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/define-functions.h b/src/define-functions.h new file mode 100644 index 0000000..4952fe0 --- /dev/null +++ b/src/define-functions.h @@ -0,0 +1,13 @@ +/* See LICENSE file for copyright and license details. */ + +#define PROCESS process_lf +#define TYPE double +#include FILE +#undef PROCESS +#undef TYPE + +#define PROCESS process_f +#define TYPE float +#include FILE +#undef PROCESS +#undef TYPE |
