17 lines
505 B
C
17 lines
505 B
C
/**
|
|
* environment/function_bindings.h
|
|
*
|
|
* Post Scarcity Software Environment: bootstrap function bindings.
|
|
*
|
|
* Bindings for functions written in C and available during bootstrap.
|
|
*
|
|
* (c) 2026 Simon Brooke <simon@journeyman.cc>
|
|
* Licensed under GPL version 2.0, or, at your option, any later version.
|
|
*/
|
|
|
|
#ifndef __psse_environment_function_bindings_h
|
|
#define __psse_environment_function_bindings_h
|
|
|
|
struct pso_pointer
|
|
initialise_function_bindings( struct pso_pointer frame_pointer );
|
|
#endif
|