mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-01 12:20:26 +02:00
* ports.h (SCM_PTOBNUM): Removed extraneous semicolon.
* smob.h: (SCM_PTOBNUM): Removed entirely; this definition is a duplicate.
This commit is contained in:
parent
198befde13
commit
ce71f796b6
2 changed files with 1 additions and 2 deletions
|
@ -150,7 +150,7 @@ typedef struct scm_ptobfuns
|
||||||
int (*fclose) SCM_P ((SCM stream));
|
int (*fclose) SCM_P ((SCM stream));
|
||||||
} scm_ptobfuns;
|
} scm_ptobfuns;
|
||||||
|
|
||||||
#define SCM_PTOBNUM(x) (0x0ff & (SCM_CAR(x)>>8));
|
#define SCM_PTOBNUM(x) (0x0ff & (SCM_CAR(x)>>8))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -57,7 +57,6 @@ typedef struct scm_smobfuns
|
||||||
|
|
||||||
|
|
||||||
#define SCM_SMOBNUM(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_sizet scm_numsmob;
|
||||||
extern scm_smobfuns *scm_smobs;
|
extern scm_smobfuns *scm_smobs;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue