~ubuntu-branches/ubuntu/wily/eso-midas/wily-proposed

« back to all changes in this revision

Viewing changes to stdred/mos/incl/proto_fitnol.h

  • Committer: Package Import Robot
  • Author(s): Ole Streicher
  • Date: 2014-04-22 14:44:58 UTC
  • Revision ID: package-import@ubuntu.com-20140422144458-okiwi1assxkkiz39
Tags: upstream-13.09pl1.2+dfsg
ImportĀ upstreamĀ versionĀ 13.09pl1.2+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 
2
.COPYRIGHT   (c) 1993-2009 European Southern Observatory
 
3
.IDENTifer   proto_fitnol.h
 
4
.AUTHOR      Otmar Stahl 
 
5
.KEYWORDS    prototypes
 
6
.LANGUAGE    C & ANSI-C
 
7
.PURPOSE     prototypes for all NR-Routines routines used in MOS
 
8
 
 
9
.ENVIRONment none
 
10
 
 
11
.VERSION     1.0    6-APR-1994 Otmar Stahl 
 
12
 
 
13
090416          last  modif
 
14
------------------------------------------------------------*/
 
15
 
 
16
extern void fgauss(
 
17
#ifdef __STDC__
 
18
     double, double [], double *, double [], int
 
19
#endif
 
20
);
 
21
 
 
22
extern int fit_gauss( 
 
23
#ifdef __STDC__
 
24
     double *, double *, int, double *
 
25
#endif
 
26
);
 
27