diff --git a/lib/node_modules/@stdlib/random/base/minstd/examples/c/example.c b/lib/node_modules/@stdlib/random/base/minstd/examples/c/example.c index 5e1520c62e71..9a6aa701aced 100644 --- a/lib/node_modules/@stdlib/random/base/minstd/examples/c/example.c +++ b/lib/node_modules/@stdlib/random/base/minstd/examples/c/example.c @@ -17,7 +17,7 @@ */ #include "stdlib/random/base/minstd.h" -#include "stdlib/random/base.h" +#include "stdlib/random/base/shared.h" #include #include #include diff --git a/lib/node_modules/@stdlib/random/base/minstd/src/main.c b/lib/node_modules/@stdlib/random/base/minstd/src/main.c index 5431a5d823cf..59c1acf5fbe5 100644 --- a/lib/node_modules/@stdlib/random/base/minstd/src/main.c +++ b/lib/node_modules/@stdlib/random/base/minstd/src/main.c @@ -133,11 +133,11 @@ static inline void minstd_free( struct BasePRNGObject *obj ) { * @return pointer to a dynamically allocated PRNG or, if unable to allocate memory, a null pointer * * @example +* #include "stdlib/random/base/minstd.h" +* #include "stdlib/random/base/shared.h" * #include * #include * #include -* #include "stdlib/random/base.h" -* #include "stdlib/random/base/minstd.h" * * // Create a PRNG: * struct BasePRNGObject *obj = stdlib_base_random_minstd_allocate( 12345 ); @@ -203,11 +203,11 @@ struct BasePRNGObject * stdlib_base_random_minstd_allocate( const int32_t seed ) * @param obj PRNG object * * @example +* #include "stdlib/random/base/minstd.h" +* #include "stdlib/random/base/shared.h" * #include * #include * #include -* #include "stdlib/random/base.h" -* #include "stdlib/random/base/minstd.h" * * // Create a PRNG: * struct BasePRNGObject *obj = stdlib_base_random_minstd_allocate( 12345 ); @@ -255,11 +255,11 @@ void stdlib_base_random_minstd_free( struct BasePRNGObject *obj ) { * @return status code * * @example +* #include "stdlib/random/base/minstd.h" +* #include "stdlib/random/base/shared.h" * #include * #include * #include -* #include "stdlib/random/base.h" -* #include "stdlib/random/base/minstd.h" * * // Create a PRNG: * struct BasePRNGObject *obj = stdlib_base_random_minstd_allocate( 12345 ); @@ -304,11 +304,11 @@ int8_t stdlib_base_random_minstd_seed( const struct BasePRNGObject *obj, int32_t * @return pointer to a copy of the PRNG's internal state or, if unable to allocate memory, a null pointer * * @example +* #include "stdlib/random/base/minstd.h" +* #include "stdlib/random/base/shared.h" * #include * #include * #include -* #include "stdlib/random/base.h" -* #include "stdlib/random/base/minstd.h" * * // Create a PRNG: * struct BasePRNGObject *obj = stdlib_base_random_minstd_allocate( 12345 ); @@ -353,11 +353,11 @@ void * stdlib_base_random_minstd_state( const struct BasePRNGObject *obj ) { * @return status code * * @example +* #include "stdlib/random/base/minstd.h" +* #include "stdlib/random/base/shared.h" * #include * #include * #include -* #include "stdlib/random/base.h" -* #include "stdlib/random/base/minstd.h" * * // Create a PRNG: * struct BasePRNGObject *obj = stdlib_base_random_minstd_allocate( 12345 );