diff options
Diffstat (limited to 'Include/cgensupport.h')
-rw-r--r-- | Include/cgensupport.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Include/cgensupport.h b/Include/cgensupport.h index 5c2cbd4..43818bc 100644 --- a/Include/cgensupport.h +++ b/Include/cgensupport.h @@ -29,8 +29,7 @@ typedef char *string; #define mknewlongobject(x) newintobject(x) #define mknewshortobject(x) newintobject((long)x) #define mknewfloatobject(x) newfloatobject(x) - -extern object *mknewcharobject PROTO((int c)); +#define mknewcharobject(c) mkvalue("c", c) extern int getiobjectarg PROTO((object *args, int nargs, int i, object **p_a)); extern int getilongarg PROTO((object *args, int nargs, int i, long *p_a)); |