Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
mpim-sw
libcdi
Commits
5013ed1a
Commit
5013ed1a
authored
Aug 07, 2014
by
Thomas Jahns
🤸
Browse files
Merge multiple definitions of precision constants.
parent
2715ee8e
Changes
4
Hide whitespace changes
Inline
Side-by-side
src/extralib.c
View file @
5013ed1a
...
...
@@ -13,12 +13,10 @@
#include
"error.h"
#include
"file.h"
#include
"binary.h"
#include
"stream_fcommon.h"
#include
"swap.h"
#define SINGLE_PRECISION 4
#define DOUBLE_PRECISION 8
enum
{
EXT_HEADER_LEN
=
4
,
};
...
...
src/ieglib.c
View file @
5013ed1a
...
...
@@ -13,13 +13,10 @@
#include
"error.h"
#include
"file.h"
#include
"binary.h"
#include
"stream_fcommon.h"
#include
"swap.h"
#define SINGLE_PRECISION 4
#define DOUBLE_PRECISION 8
static
int
initIegLib
=
0
;
static
int
iegDefaultDprec
=
0
;
...
...
src/servicelib.c
View file @
5013ed1a
...
...
@@ -13,12 +13,10 @@
#include
"error.h"
#include
"file.h"
#include
"binary.h"
#include
"stream_fcommon.h"
#include
"swap.h"
#define SINGLE_PRECISION 4
#define DOUBLE_PRECISION 8
#define SRV_HEADER_LEN 8
...
...
src/stream_fcommon.h
View file @
5013ed1a
...
...
@@ -3,6 +3,11 @@
#include
"cdi_int.h"
enum
{
SINGLE_PRECISION
=
4
,
DOUBLE_PRECISION
=
8
,
};
void
streamFCopyRecord
(
stream_t
*
streamptr2
,
stream_t
*
streamptr1
,
const
char
*
container_name
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment