~ubuntu-branches/debian/sid/gsl/sid

« back to all changes in this revision

Viewing changes to qrng/gsl_qrng.h

  • Committer: Bazaar Package Importer
  • Author(s): Dirk Eddelbuettel
  • Date: 2008-12-16 06:17:55 UTC
  • mfrom: (1.3.2 upstream) (3.1.15 jaunty)
  • Revision ID: james.westby@ubuntu.com-20081216061755-9la7p0qwrhopk8pl
Tags: 1.12+dfsg-1
* New upstream version released today

* doc/*: As before, removed the 'non-free' documentation to create a 
  source package that complies with Debian's interpretation of what is free. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
#include <stdlib.h>
7
7
#include <gsl/gsl_types.h>
8
8
#include <gsl/gsl_errno.h>
 
9
#include <gsl/gsl_inline.h>
9
10
 
10
11
#undef __BEGIN_DECLS
11
12
#undef __END_DECLS
93
94
 
94
95
 
95
96
/* Retrieve next vector in sequence. */
96
 
int gsl_qrng_get (const gsl_qrng * q, double x[]);
97
 
 
 
97
INLINE_DECL int gsl_qrng_get (const gsl_qrng * q, double x[]);
98
98
 
99
99
#ifdef HAVE_INLINE
100
 
extern inline int gsl_qrng_get (const gsl_qrng * q, double x[]);
101
 
extern inline int gsl_qrng_get (const gsl_qrng * q, double x[])
 
100
INLINE_FUN int gsl_qrng_get (const gsl_qrng * q, double x[])
102
101
{
103
102
  return (q->type->get) (q->state, q->dimension, x);
104
103
}