diff options
author | Elena Zannoni <ezannoni@kwikemart.cygnus.com> | 2002-08-23 22:02:32 +0000 |
---|---|---|
committer | Elena Zannoni <ezannoni@kwikemart.cygnus.com> | 2002-08-23 22:02:32 +0000 |
commit | 84041b4c47edb0461f3b82afb77ca2d81819ebfa (patch) | |
tree | ddbca1e6f70f9c4a4b6c3c923b16603a95946b22 /readline/xmalloc.h | |
parent | f9267e152c9c4e2b150366c590674180e66d45df (diff) | |
download | gdb-84041b4c47edb0461f3b82afb77ca2d81819ebfa.zip gdb-84041b4c47edb0461f3b82afb77ca2d81819ebfa.tar.gz gdb-84041b4c47edb0461f3b82afb77ca2d81819ebfa.tar.bz2 |
import of readline-4.3
Diffstat (limited to 'readline/xmalloc.h')
-rw-r--r-- | readline/xmalloc.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/readline/xmalloc.h b/readline/xmalloc.h index bdf251b..9cb08ba 100644 --- a/readline/xmalloc.h +++ b/readline/xmalloc.h @@ -39,8 +39,8 @@ #endif /* !PTR_T */ -extern char *xmalloc __P((int)); -extern char *xrealloc __P((void *, int)); -extern void xfree __P((void *)); +extern PTR_T xmalloc PARAMS((size_t)); +extern PTR_T xrealloc PARAMS((void *, size_t)); +extern void xfree PARAMS((void *)); #endif /* _XMALLOC_H_ */ |