Last change
on this file was
2,
checked in by oldcode, 24 years ago
|
Initial revision
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
File size:
287 bytes
|
Line | |
---|
1 | /* xmalloc.h --- interface to never-fail memory allocators. |
---|
2 | Jim Blandy <jimb@gnu.ai.mit.edu> --- July 1994 */ |
---|
3 | |
---|
4 | #ifndef XMALLOC_H |
---|
5 | #define XMALLOC_H |
---|
6 | |
---|
7 | #include <stddef.h> |
---|
8 | #include <stdlib.h> |
---|
9 | |
---|
10 | extern void *xmalloc (size_t); |
---|
11 | extern void *xrealloc (void *, size_t); |
---|
12 | |
---|
13 | #endif /* XMALLOC_H */ |
---|
Note: See
TracBrowser
for help on using the repository browser.