cleanup some whitespace errors and prototypes
This commit is contained in:
parent
701027b1ff
commit
7880d5bd8e
|
|
@ -1,3 +1,10 @@
|
|||
2011-02-19 Robert Larice
|
||||
* configure.ac ,
|
||||
* examples/transient-noise/shot_ng.cir ,
|
||||
* src/Makefile.am ,
|
||||
* src/frontend/trannoise/FastNorm3.c :
|
||||
cleanup some whitespace errors and prototypes
|
||||
|
||||
2011-02-19 Robert Larice
|
||||
* src/frontend/numparam/Makefile.am ,
|
||||
* src/frontend/numparam/general.h ,
|
||||
|
|
|
|||
|
|
@ -1073,12 +1073,12 @@ AC_CONFIG_FILES([Makefile
|
|||
src/frontend/help/Makefile
|
||||
src/frontend/parser/Makefile
|
||||
src/frontend/plotting/Makefile
|
||||
src/frontend/trannoise/Makefile
|
||||
src/frontend/trannoise/Makefile
|
||||
src/frontend/wdisp/Makefile
|
||||
src/include/Makefile
|
||||
src/maths/Makefile
|
||||
src/maths/cmaths/Makefile
|
||||
src/maths/fft/Makefile
|
||||
src/maths/fft/Makefile
|
||||
src/maths/misc/Makefile
|
||||
src/maths/ni/Makefile
|
||||
src/maths/deriv/Makefile
|
||||
|
|
|
|||
|
|
@ -24,4 +24,4 @@ plot (-1)*i(vdev)
|
|||
meas tran vdev_rms avg i(vdev) from=0u to=9.9u
|
||||
meas tran vdev_rms avg i(vdev) from=10.1u to=20u
|
||||
.endc
|
||||
.end
|
||||
.end
|
||||
|
|
|
|||
|
|
@ -374,7 +374,7 @@ endif
|
|||
libspice_la_LIBADD += \
|
||||
frontend/parser/libparser.la \
|
||||
frontend/numparam/libnumparam.la \
|
||||
frontend/trannoise/libtrannoise.la \
|
||||
frontend/trannoise/libtrannoise.la \
|
||||
spicelib/parser/libinp.la
|
||||
|
||||
if CIDER_WANTED
|
||||
|
|
|
|||
|
|
@ -575,7 +575,7 @@ Sf wk1 [WL], wk2 [WL]; /* Pools of variates. */
|
|||
/* ------------------ regen ---------------------- */
|
||||
/* Takes variates from wk1[], transforms to wk[2], then back to wk1[].
|
||||
*/
|
||||
void regen ()
|
||||
static void regen (void)
|
||||
{
|
||||
Sw i, j, k, m;
|
||||
Sf p, q, r, s, t;
|
||||
|
|
@ -693,7 +693,7 @@ Sf renormalize (void)
|
|||
|
||||
/* ------------------------ BoxMuller ---------------------- */
|
||||
/* Fills block gvec of length ll with proper normals */
|
||||
void boxmuller (Sf *gvec, Sw ll)
|
||||
static void boxmuller (Sf *gvec, Sw ll)
|
||||
{
|
||||
Sw i;
|
||||
Sf tx, ty, tr, tz;
|
||||
|
|
@ -804,7 +804,7 @@ docheck:
|
|||
fastnorm() returns the value GScale*gausssave[0].
|
||||
*/
|
||||
|
||||
Sf fastnorm ()
|
||||
Sf fastnorm (void)
|
||||
{
|
||||
Sf sos;
|
||||
Sw n1;
|
||||
|
|
|
|||
Loading…
Reference in New Issue