Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cdo
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mpim-sw
cdo
Commits
b51d37ba
Commit
b51d37ba
authored
13 years ago
by
Uwe Schulzweida
Browse files
Options
Downloads
Patches
Plain Diff
demmory.h: change __FUNCTION__ to __func__
parent
5e6db220
No related branches found
Branches containing commit
Tags
cdo-1.9.4
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
doc/tex/cdo_int.tex
+1
-1
1 addition, 1 deletion
doc/tex/cdo_int.tex
src/dmemory.h
+1
-1
1 addition, 1 deletion
src/dmemory.h
with
2 additions
and
2 deletions
doc/tex/cdo_int.tex
+
1
−
1
View file @
b51d37ba
\chapter
{
Introduction
}
The Climate Data Operators (
{
\CDO
}
) software
are
a collection of many operators
The Climate Data Operators (
{
\CDO
}
) software
is
a collection of many operators
for standard processing of climate and NWP model output.
The operators include simple statistical and arithmetic functions, data selection
and subsampling tools, and spatial interpolation.
...
...
This diff is collapsed.
Click to expand it.
src/dmemory.h
+
1
−
1
View file @
b51d37ba
...
...
@@ -31,7 +31,7 @@ extern void Free (const char *caller, const char *file, int line, void *ptr
#if defined WITH_CALLER_NAME
# define realloc(p, s) Realloc(__func__, __FILE__, __LINE__, p, (size_t)s)
# define calloc(n, s) Calloc(__func__, __FILE__, __LINE__, n, (size_t)s)
# define malloc(s) Malloc(__
FUNCTION
__, __FILE__, __LINE__, (size_t)s)
# define malloc(s) Malloc(__
func
__, __FILE__, __LINE__, (size_t)s)
# define free(p) Free(__func__, __FILE__, __LINE__, p)
#else
# define realloc(p, s) Realloc((void *) NULL, __FILE__, __LINE__, p, (size_t)s)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment