1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-11 22:31:12 +02:00

Do nothing when deprecated things are

disabled.
This commit is contained in:
Marius Vollmer 2005-06-12 12:31:33 +00:00
parent b730fbf131
commit c70c62a636

View file

@ -23,6 +23,8 @@
#include <assert.h>
#include <string.h>
#if SCM_ENABLE_DEPRECATED
static int
string_equal (SCM str, char *lit)
{
@ -72,3 +74,13 @@ main (int argc, char *argv[])
test_gh_set_substr ();
return 0;
}
#else
int
main (int argc, char *argv[])
{
return 0;
}
#endif /* !SCM_ENABLE_DEPRECATED */