32-way branching in intmap.scm, not 16-way
[bpt/guile.git] / libguile / deprecation.h
CommitLineData
7e516288
MV
1/* classes: h_files */
2
5cd06d5e
DH
3#ifndef SCM_DEPRECATION_H
4#define SCM_DEPRECATION_H
8c494e99 5
6ab8238d 6/* Copyright (C) 2001, 2006, 2008, 2009 Free Software Foundation, Inc.
8c494e99 7 *
73be1d9e 8 * This library is free software; you can redistribute it and/or
53befeb7
NJ
9 * modify it under the terms of the GNU Lesser General Public License
10 * as published by the Free Software Foundation; either version 3 of
11 * the License, or (at your option) any later version.
8c494e99 12 *
53befeb7
NJ
13 * This library is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
73be1d9e
MV
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
8c494e99 17 *
73be1d9e
MV
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
53befeb7
NJ
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21 * 02110-1301 USA
73be1d9e 22 */
8c494e99 23
7e516288 24\f
8c494e99 25
7e516288
MV
26#include "libguile/__scm.h"
27
28\f
29
6ab8238d 30/* These functions are a possibly useful part of the API and not only used
31 internally, thus they are exported always, not depending on
32 SCM_ENABLE_DEPRECATED. */
4bbe9eb7 33
33b001fd 34SCM_API void scm_c_issue_deprecation_warning (const char *msg);
d013f095 35SCM_API void scm_c_issue_deprecation_warning_fmt (const char *msg, ...);
33b001fd 36SCM_API SCM scm_issue_deprecation_warning (SCM msgs);
7e516288 37
33b001fd 38SCM_API SCM scm_include_deprecated_features (void);
102dbb6f 39SCM_INTERNAL void scm_init_deprecation (void);
7e516288 40
5cd06d5e 41#endif /* SCM_DEPRECATION_H */
7e516288
MV
42
43/*
44 Local Variables:
45 c-file-style: "gnu"
46 End:
47*/