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 | 6428ff296de69852392487b8f74d80e930caa6a1 (patch) | |
tree | 3a5bcdf4c010fe99f9642d1a403854b4c9ae36da /readline/xmalloc.h | |
parent | 28e34279f07b56079387d2e45a5e7b33bc656076 (diff) | |
download | gdb-6428ff296de69852392487b8f74d80e930caa6a1.tar.gz |
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 bdf251b070a..9cb08ba21f1 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_ */ |