mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-19 13:49:17 +02:00
Fixing static libraries array initialization.
This commit is contained in:
parent
146d6151df
commit
c5cad60259
1 changed files with 3 additions and 2 deletions
|
@ -373,7 +373,8 @@
|
||||||
;; (display " sexp_init_proc init;\n")
|
;; (display " sexp_init_proc init;\n")
|
||||||
;; (display "} sexp_library_entry_t;\n")
|
;; (display "} sexp_library_entry_t;\n")
|
||||||
;; (newline)
|
;; (newline)
|
||||||
(display "struct sexp_library_entry_t sexp_static_libraries[] = {\n")
|
(display "struct sexp_library_entry_t sexp_static_libraries_array[] = {\n")
|
||||||
(for-each init-c-lib c-libs)
|
(for-each init-c-lib c-libs)
|
||||||
(display " { NULL, NULL }\n")
|
(display " { NULL, NULL }\n")
|
||||||
(display "};\n\n"))
|
(display "};\n\n")
|
||||||
|
(display "struct sexp_library_entry_t* sexp_static_libraries = sexp_static_libraries_array;\n"))
|
||||||
|
|
Loading…
Add table
Reference in a new issue