We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d87686 commit 75d4eb9Copy full SHA for 75d4eb9
src/postprocessing/mppnccombine/mppnccombine.c
@@ -134,6 +134,12 @@
134
# define DEFAULT_SHUFFLE 1
135
#endif
136
137
+inline int min(int a, int b)
138
+{
139
+ if (a<b) return a;
140
+ return b;
141
+}
142
+
143
/* Information structure for a file */
144
struct fileinfo
145
{
@@ -722,12 +728,6 @@ void usage()
722
728
}
723
729
724
730
725
-inline int min(int a, int b)
726
-{
727
- if (a<b) return a;
- return b;
-}
-
731
/* Open an input file and get some information about it, define the */
732
/* structure of the output file if necessary, prepare to copy all the */
733
/* variables for the current block to memory (and non-decomposed variables */
0 commit comments