mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-19 13:49:17 +02:00
Merge pull request #610 from ilammy/hide-symbols
Hide unnecessarily exported symbols
This commit is contained in:
commit
addb859ab2
1 changed files with 2 additions and 2 deletions
|
@ -7,7 +7,7 @@
|
||||||
#if SEXP_USE_IMAGE_LOADING
|
#if SEXP_USE_IMAGE_LOADING
|
||||||
|
|
||||||
#define ERR_STR_SIZE 256
|
#define ERR_STR_SIZE 256
|
||||||
char gc_heap_err_str[ERR_STR_SIZE];
|
static char gc_heap_err_str[ERR_STR_SIZE];
|
||||||
|
|
||||||
|
|
||||||
static sexp_uint_t sexp_gc_allocated_bytes (sexp ctx, sexp *types, size_t types_cnt, sexp x) {
|
static sexp_uint_t sexp_gc_allocated_bytes (sexp ctx, sexp *types, size_t types_cnt, sexp x) {
|
||||||
|
@ -573,7 +573,7 @@ static sexp load_image_callback_p2 (sexp ctx, sexp dstp, void *user) {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
int load_image_header(FILE *fp, struct sexp_image_header_t* header) {
|
static int load_image_header(FILE *fp, struct sexp_image_header_t* header) {
|
||||||
if (!fp || !header) { return 0; }
|
if (!fp || !header) { return 0; }
|
||||||
|
|
||||||
if (fread(header, sizeof(struct sexp_image_header_t), 1, fp) != 1) {
|
if (fread(header, sizeof(struct sexp_image_header_t), 1, fp) != 1) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue