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
6a73b077
Commit
6a73b077
authored
Sep 03, 2014
by
Uwe Schulzweida
Browse files
removed static declarations (functions are also used in CDO)
parent
352e5a11
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/grid.c
View file @
6a73b077
...
...
@@ -211,9 +211,8 @@ int gridSize(void)
return
reshCountType
(
&
gridOps
);
}
static
void
gridGenXvals
(
int
xsize
,
double
xfirst
,
double
xlast
,
double
xinc
,
double
*
xvals
)
// used also in CDO
void
gridGenXvals
(
int
xsize
,
double
xfirst
,
double
xlast
,
double
xinc
,
double
*
xvals
)
{
if
(
(
!
(
fabs
(
xinc
)
>
0
))
&&
xsize
>
1
)
{
...
...
@@ -253,9 +252,8 @@ void calc_gaussgrid(double *yvals, int ysize, double yfirst, double ylast)
}
}
static
void
gridGenYvals
(
int
gridtype
,
int
ysize
,
double
yfirst
,
double
ylast
,
double
yinc
,
double
*
yvals
)
// used also in CDO
void
gridGenYvals
(
int
gridtype
,
int
ysize
,
double
yfirst
,
double
ylast
,
double
yinc
,
double
*
yvals
)
{
const
double
deleps
=
0
.
002
;
...
...
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