repo.or.cz
/
WPS-merge.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Created a tag for the 2012 HWRF baseline tests.
[WPS-merge.git]
/
hwrf-baseline-20120103-1354
/
ungrib
/
src
/
ngl
/
w3
/
errexit.c
blob
39a43d6de601a8ce11fee6884953c38c8bd86c10
1
#include <stdlib.h>
2
3
#if defined _UNDERSCORE
4
void
errexit_
(
int
a
)
5
#elif defined _DOUBLEUNDERSCORE
6
void
errexit__
(
int
a
)
7
#else
8
void
errexit
(
int
a
)
9
#endif
10
{
11
exit
(
a
);
12
}