Mercurial > hg > octave-lyh
comparison liboctave/randgamma.h @ 13039:70d32160c90b stable
Make more symbols for export.
* liboctave/randgamma.h: Add OCTAVE_API modifier to oct_randg and
oct_fill_randg
* liboctave/randmtzig.h: Add OCTAVE_API modifier to oct_init_by_int,
oct_init_by_array, oct_init_by_entropy, oct_get_state, oct_set_state,
oct_randu, oct_randn, oct_rande, oct_fill_randu, oct_fill_randn and
oct_fill_rande.
* liboctave/randpoisson.h: Add OCTAVE_API modifier to oct_randp and
oct_fill_randp.
* src/xpow.h: Add OCTINTERP_API modifier to xpow and elem_xpow (all variants).
author | Michael Goffioul <michael.goffioul@gmail.com> |
---|---|
date | Fri, 02 Sep 2011 21:43:10 +0100 |
parents | fd0a3ac60b0e |
children | 72c96de7a403 |
comparison
equal
deleted
inserted
replaced
13038:50a27a3b5131 | 13039:70d32160c90b |
---|---|
27 | 27 |
28 #ifdef __cplusplus | 28 #ifdef __cplusplus |
29 extern "C" { | 29 extern "C" { |
30 #endif | 30 #endif |
31 | 31 |
32 extern double oct_randg (double a); | 32 extern OCTAVE_API double oct_randg (double a); |
33 extern void oct_fill_randg (double a, octave_idx_type n, double *p); | 33 extern OCTAVE_API void oct_fill_randg (double a, octave_idx_type n, double *p); |
34 | 34 |
35 #ifdef __cplusplus | 35 #ifdef __cplusplus |
36 } | 36 } |
37 #endif | 37 #endif |
38 #endif | 38 #endif |