diff options
| author | Antonin Descampe <antonin@gmail.com> | 2005-11-01 10:15:34 +0000 |
|---|---|---|
| committer | Antonin Descampe <antonin@gmail.com> | 2005-11-01 10:15:34 +0000 |
| commit | 8f3bd54c3dd0403aae45abccdcc850eab5faeb6a (patch) | |
| tree | 7a8c3aa95f4990d26a65eff5f515fd22deb24577 /libopenjpeg/int.c | |
| parent | 18a9bcb882b9af492714ff122a6b403961a2dfb3 (diff) | |
Changes proposed by Mathieu Malaterre from the GDCM project... Thanks a lot Mathieu
- '//' replaced by '/* */'
- inclusion of int.h in int.c
- inclusion of j2k.h in int.h in order to export symbols
- adding (void) var when a variable is declared but not used
- some explicit cast
- CLOCKS_PER_SEC is declared as float in bcc55, so there is a need to cast it to int for the modulo operation
- some variables changed from float -> double
Diffstat (limited to 'libopenjpeg/int.c')
| -rw-r--r-- | libopenjpeg/int.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libopenjpeg/int.c b/libopenjpeg/int.c index 7bb5f23d..a5e6a582 100644 --- a/libopenjpeg/int.c +++ b/libopenjpeg/int.c @@ -24,6 +24,8 @@ * POSSIBILITY OF SUCH DAMAGE. */ +#include "int.h" + /* * Get the minimum of two integers. * |
