blob: f40d7a596a287c3024598f47f769b0694eaf44a5 [file] [log] [blame]
Jari Aaltobb706242000-03-17 21:46:59 +00001/* xmalloc.h -- memory allocation that aborts on errors. */
2
Jari Aalto31859422009-01-12 13:36:28 +00003/* Copyright (C) 1999-2009 Free Software Foundation, Inc.
Jari Aaltobb706242000-03-17 21:46:59 +00004
Jari Aalto31859422009-01-12 13:36:28 +00005 This file is part of the GNU Readline Library (Readline), a library
6 for reading lines of text with interactive input and history editing.
Jari Aaltobb706242000-03-17 21:46:59 +00007
Jari Aalto31859422009-01-12 13:36:28 +00008 Readline is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
Jari Aaltobb706242000-03-17 21:46:59 +000011 (at your option) any later version.
12
Jari Aalto31859422009-01-12 13:36:28 +000013 Readline is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Jari Aaltobb706242000-03-17 21:46:59 +000016 GNU General Public License for more details.
17
Jari Aalto31859422009-01-12 13:36:28 +000018 You should have received a copy of the GNU General Public License
19 along with Readline. If not, see <http://www.gnu.org/licenses/>.
20*/
Jari Aaltobb706242000-03-17 21:46:59 +000021
22#if !defined (_XMALLOC_H_)
23#define _XMALLOC_H_
24
25#if defined (READLINE_LIBRARY)
26# include "rlstdc.h"
27#else
28# include <readline/rlstdc.h>
29#endif
30
31#ifndef PTR_T
32
33#ifdef __STDC__
34# define PTR_T void *
35#else
36# define PTR_T char *
37#endif
38
39#endif /* !PTR_T */
40
Jari Aaltof73dda02001-11-13 17:56:06 +000041extern PTR_T xmalloc PARAMS((size_t));
42extern PTR_T xrealloc PARAMS((void *, size_t));
43extern void xfree PARAMS((void *));
Jari Aaltobb706242000-03-17 21:46:59 +000044
45#endif /* _XMALLOC_H_ */