annotate liboctave/f2c-main.c @ 15018:3d8ace26c5b4

maint: Use Octave coding conventions for cuddled parentheses in liboctave/. * Array-util.cc, Array.cc, Array.h, CMatrix.cc, CNDArray.cc, CSparse.cc, CmplxQR.cc, CollocWt.cc, DASPK.cc, DASRT.cc, DASSL.cc, EIG.cc, LSODE.cc, MSparse.cc, MatrixType.cc, Sparse-op-defs.h, Sparse-perm-op-defs.h, Sparse.cc, Sparse.h, SparseCmplxCHOL.cc, SparseCmplxLU.cc, SparseCmplxQR.cc, SparseQR.cc, SparsedbleCHOL.cc, SparsedbleLU.cc, boolSparse.cc, cmd-hist.cc, dDiagMatrix.cc, dMatrix.cc, dNDArray.cc, dSparse.cc, data-conv.cc, dbleQR.cc, dbleSVD.cc, dim-vector.cc, eigs-base.cc, f2c-main.c, fCMatrix.cc, fCNDArray.cc, fCmplxQR.cc, fEIG.cc, fMatrix.cc, fNDArray.cc, floatQR.cc, floatSVD.cc, idx-vector.cc, kpse.cc, lo-specfun.cc, mx-inlines.cc, mx-op-defs.h, oct-alloc.cc, oct-binmap.h, oct-fftw.cc, oct-group.h, oct-inttypes.cc, oct-inttypes.h, oct-locbuf.cc, oct-md5.cc, oct-rand.cc, oct-sort.cc, oct-syscalls.cc, randgamma.c, randmtzig.c, randpoisson.c, sparse-base-chol.cc, sparse-base-lu.cc, sparse-dmsolve.cc, str-vec.cc, str-vec.h, tempnam.c, tempname.c: Use Octave coding conventions for cuddled parentheses in liboctave/.
author Rik <rik@octave.org>
date Thu, 26 Jul 2012 08:13:22 -0700
parents 460a3c6d8bf1
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2566
bcdd6bf533ea [project @ 1996-12-06 00:51:31 by jwe]
jwe
parents:
diff changeset
1 /*
bcdd6bf533ea [project @ 1996-12-06 00:51:31 by jwe]
jwe
parents:
diff changeset
2
14138
72c96de7a403 maint: update copyright notices for 2012
John W. Eaton <jwe@octave.org>
parents: 11586
diff changeset
3 Copyright (C) 1996-2012 John W. Eaton
2566
bcdd6bf533ea [project @ 1996-12-06 00:51:31 by jwe]
jwe
parents:
diff changeset
4
bcdd6bf533ea [project @ 1996-12-06 00:51:31 by jwe]
jwe
parents:
diff changeset
5 This file is part of Octave.
bcdd6bf533ea [project @ 1996-12-06 00:51:31 by jwe]
jwe
parents:
diff changeset
6
bcdd6bf533ea [project @ 1996-12-06 00:51:31 by jwe]
jwe
parents:
diff changeset
7 Octave is free software; you can redistribute it and/or modify it
bcdd6bf533ea [project @ 1996-12-06 00:51:31 by jwe]
jwe
parents:
diff changeset
8 under the terms of the GNU General Public License as published by the
7016
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 5307
diff changeset
9 Free Software Foundation; either version 3 of the License, or (at your
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 5307
diff changeset
10 option) any later version.
2566
bcdd6bf533ea [project @ 1996-12-06 00:51:31 by jwe]
jwe
parents:
diff changeset
11
bcdd6bf533ea [project @ 1996-12-06 00:51:31 by jwe]
jwe
parents:
diff changeset
12 Octave is distributed in the hope that it will be useful, but WITHOUT
bcdd6bf533ea [project @ 1996-12-06 00:51:31 by jwe]
jwe
parents:
diff changeset
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
bcdd6bf533ea [project @ 1996-12-06 00:51:31 by jwe]
jwe
parents:
diff changeset
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
bcdd6bf533ea [project @ 1996-12-06 00:51:31 by jwe]
jwe
parents:
diff changeset
15 for more details.
bcdd6bf533ea [project @ 1996-12-06 00:51:31 by jwe]
jwe
parents:
diff changeset
16
bcdd6bf533ea [project @ 1996-12-06 00:51:31 by jwe]
jwe
parents:
diff changeset
17 You should have received a copy of the GNU General Public License
7016
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 5307
diff changeset
18 along with Octave; see the file COPYING. If not, see
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 5307
diff changeset
19 <http://www.gnu.org/licenses/>.
2566
bcdd6bf533ea [project @ 1996-12-06 00:51:31 by jwe]
jwe
parents:
diff changeset
20
bcdd6bf533ea [project @ 1996-12-06 00:51:31 by jwe]
jwe
parents:
diff changeset
21 */
bcdd6bf533ea [project @ 1996-12-06 00:51:31 by jwe]
jwe
parents:
diff changeset
22
bcdd6bf533ea [project @ 1996-12-06 00:51:31 by jwe]
jwe
parents:
diff changeset
23 #include <assert.h>
bcdd6bf533ea [project @ 1996-12-06 00:51:31 by jwe]
jwe
parents:
diff changeset
24
3887
7da18459c08b [project @ 2002-04-04 00:44:21 by jwe]
jwe
parents: 2847
diff changeset
25
7da18459c08b [project @ 2002-04-04 00:44:21 by jwe]
jwe
parents: 2847
diff changeset
26 /* Dummy Fortran main declaration, needed in order to link to some
11586
12df7854fa7c strip trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
27 Fortran libraries. See the AC_F77_DUMMY_MAIN macro documentation.
3887
7da18459c08b [project @ 2002-04-04 00:44:21 by jwe]
jwe
parents: 2847
diff changeset
28 This function should never be called. */
2566
bcdd6bf533ea [project @ 1996-12-06 00:51:31 by jwe]
jwe
parents:
diff changeset
29
3887
7da18459c08b [project @ 2002-04-04 00:44:21 by jwe]
jwe
parents: 2847
diff changeset
30 #ifdef F77_DUMMY_MAIN
7da18459c08b [project @ 2002-04-04 00:44:21 by jwe]
jwe
parents: 2847
diff changeset
31 # ifdef __cplusplus
7da18459c08b [project @ 2002-04-04 00:44:21 by jwe]
jwe
parents: 2847
diff changeset
32 extern "C"
7da18459c08b [project @ 2002-04-04 00:44:21 by jwe]
jwe
parents: 2847
diff changeset
33 # endif
15018
3d8ace26c5b4 maint: Use Octave coding conventions for cuddled parentheses in liboctave/.
Rik <rik@octave.org>
parents: 14846
diff changeset
34 int F77_DUMMY_MAIN () { assert (0); return 1; }
2566
bcdd6bf533ea [project @ 1996-12-06 00:51:31 by jwe]
jwe
parents:
diff changeset
35 #endif