More private-gc excisions
[bpt/guile.git] / libguile / private-gc.h
CommitLineData
c7743d02 1/*
cb90e2cb
HWN
2 * private-gc.h - private declarations for garbage collection.
3 *
064d2409 4 * Copyright (C) 2002, 03, 04, 05, 06, 07, 08, 09, 11, 13 Free Software Foundation, Inc.
cb90e2cb
HWN
5 *
6 * This library is free software; you can redistribute it and/or
53befeb7
NJ
7 * modify it under the terms of the GNU Lesser General Public License
8 * as published by the Free Software Foundation; either version 3 of
9 * the License, or (at your option) any later version.
cb90e2cb 10 *
53befeb7
NJ
11 * This library is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
cb90e2cb
HWN
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
53befeb7
NJ
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19 * 02110-1301 USA
cb90e2cb 20 */
c7743d02 21
760fb97d
LC
22#ifndef SCM_PRIVATE_GC
23#define SCM_PRIVATE_GC
c7743d02
HWN
24
25#include "_scm.h"
26
c7743d02 27
760fb97d 28SCM_INTERNAL int scm_getenv_int (const char *var, int def);
c7743d02 29
b359b36a
LC
30SCM_INTERNAL char const *scm_i_tag_name (scm_t_bits tag); /* MOVEME */
31
c7743d02 32#endif