1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-01 01:40:21 +02:00

* tags.h (SCM_VOIDP_TEST): Renamed from VOIDP_TEST.

Layout cleanups.
This commit is contained in:
Mikael Djurfeldt 2000-03-11 15:10:34 +00:00
parent a54367e2da
commit d266d03a0b

View file

@ -2,7 +2,7 @@
#ifndef TAGSH #ifndef TAGSH
#define TAGSH #define TAGSH
/* Copyright (C) 1995, 1996, 1997, 1998, 1999 Free Software Foundation, Inc. /* Copyright (C) 1995-2000 Free Software Foundation, Inc.
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
@ -62,8 +62,8 @@ typedef long SCMWORD;
But as external interface, we use void*, which will be checked more strictly for But as external interface, we use void*, which will be checked more strictly for
dubious conversions. dubious conversions.
*/ */
#define VOIDP_TEST #define SCM_VOIDP_TEST
#ifndef VOIDP_TEST #ifndef SCM_VOIDP_TEST
typedef SCMWORD SCM; typedef SCMWORD SCM;
#define SCM_ASWORD(x) (x) #define SCM_ASWORD(x) (x)
#define SCM_ASSCM(x) (x) #define SCM_ASSCM(x) (x)