annotate liboctave/f2c-main.c @ 14327:4d917a6a858b stable

doc: Use Octave coding conventions in @example blocks of docstrings. * accumarray.m, accumdim.m, bar.m, base2dec.m, bincoeff.m, bitcmp.m, bitset.m, celldisp.m, chop.m, clabel.m, cloglog.m, colon.m, compass.m, computer.m, contour3.m, contourc.m, corr.m, cstrcat.m, ctime.m, cylinder.m, date.m, dec2base.m, demo.m, dir.m, dlmwrite.m, expm.m, ezcontourf.m, ezcontour.m, ezmeshc.m, ezmesh.m, ezplot.m, ezsurfc.m, ezsurf.m, feather.m, findobj.m, flipdim.m, fplot.m, genvarname.m, getfield.m, hankel.m, hilb.m, hist.m, idivide.m, index.m, int2str.m, interp1.m, is_leap_year.m, ismember.m, isocolors.m, isonormals.m, isosurface.m, kurtosis.m, legendre.m, linkprop.m, logit.m, logm.m, __makeinfo__.m, __marching_cube__.m, median.m, mkoctfile.m, moment.m, mpoles.m, orderfields.m, pcg.m, pcr.m, plot3.m, plotmatrix.m, polyaffine.m, polygcd.m, poly.m, polyout.m, print.m, qp.m, quadgk.m, qzhess.m, randi.m, rat.m, refreshdata.m, residue.m, rose.m, rot90.m, saveas.m, saveobj.m, shiftdim.m, skewness.m, spaugment.m, spdiags.m, sqp.m, stem.m, str2num.m, strcat.m, strjust.m, strread.m, strsplit.m, structfun.m, subplot.m, subsindex.m, substruct.m, surfl.m, surfnorm.m, svds.m, uimenu.m, union.m, voronoi.m, warning_ids.m, wblpdf.m: Use Octave coding conventions in @example blocks of docstrings.
author Rik <octave@nomad.inbox5.com>
date Sat, 04 Feb 2012 22:12:50 -0800
parents 72c96de7a403
children 460a3c6d8bf1
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
7da18459c08b [project @ 2002-04-04 00:44:21 by jwe]
jwe
parents: 2847
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