15 lines
357 B
C
15 lines
357 B
C
/**
|
|
* environment/environment.h
|
|
*
|
|
* Initialise a MINIMAL environment.
|
|
*
|
|
* (c) 2026 Simon Brooke <simon@journeyman.cc>
|
|
* Licensed under GPL version 2.0, or, at your option, any later version.
|
|
*/
|
|
|
|
#ifndef __psse_environment_environment_h
|
|
#define __psse_environment_environment_h
|
|
|
|
struct pso_pointer initialise_environment( uint32_t node );
|
|
|
|
#endif
|