1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-31 09:20:23 +02:00

* smob.h (SCM_SMOBNUM, SCM_PTOBNUM): Remove extraneous

semicolons.  Only pure luck kept this from being noticed earlier.
This commit is contained in:
Jim Blandy 1997-01-07 23:12:09 +00:00
parent 10a12f9fb4
commit 579b5bc1ee

View file

@ -56,8 +56,8 @@ typedef struct scm_smobfuns
#define SCM_SMOBNUM(x) (0x0ff & (SCM_CAR(x)>>8));
#define SCM_PTOBNUM(x) (0x0ff & (SCM_CAR(x)>>8));
#define SCM_SMOBNUM(x) (0x0ff & (SCM_CAR(x)>>8))
#define SCM_PTOBNUM(x) (0x0ff & (SCM_CAR(x)>>8))
extern scm_sizet scm_numsmob;
extern scm_smobfuns *scm_smobs;