Skip to content

Commit c23ac78

Browse files
authored
chore: reorder declarations
Signed-off-by: Philipp Burckhardt <[email protected]>
1 parent 2d47552 commit c23ac78

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/node_modules/@stdlib/stats/base/dists/poisson/mgf/benchmark/c/benchmark.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,10 +93,10 @@ static double random_uniform( const double min, const double max ) {
9393
*/
9494
static double benchmark( void ) {
9595
double elapsed;
96-
double t[ 100 ];
9796
double lambda[ 100 ];
98-
double y;
9997
double start;
98+
double t[ 100 ];
99+
double y;
100100
int i;
101101

102102
for ( i = 0; i < 100; i++ ) {

lib/node_modules/@stdlib/stats/base/dists/poisson/mgf/examples/c/example.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ static double random_uniform( const double min, const double max ) {
2626
}
2727

2828
int main( void ) {
29-
double t;
3029
double lambda;
30+
double t;
3131
double y;
3232
int i;
3333

0 commit comments

Comments
 (0)