• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2 Copyright 2020 René Ferdinand Rivera Morell
3 Distributed under the Boost Software License, Version 1.0.
4 (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
5 */
6 
7 #ifndef B2_STARTUP_H
8 #define B2_STARTUP_H
9 
10 #include "config.h"
11 #include "frames.h"
12 
13 namespace b2
14 {
15     namespace startup
16     {
17         void load_builtins();
18         LIST *builtin_boost_build(FRAME *frame, int flags);
19         bool bootstrap(FRAME *frame);
20     }
21 } // namespace b2
22 
23 #endif
24