I *think* that's all the bootstrap functions being bound in the environment.

This commit is contained in:
Simon Brooke 2026-05-04 18:23:46 +01:00
parent efa6a3246d
commit fcfdb43b05
8 changed files with 184 additions and 54 deletions

View file

@ -0,0 +1,17 @@
/**
* 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