#include "awk.h"#include "posix/gawkmisc.c"Go to the source code of this file.
Typedefs | |
| typedef char * | pointer |
Functions | |
| pointer xmalloc | P ((size_t bytes)) |
| pointer | xmalloc (size_t bytes) |
|
|
Definition at line 61 of file gawkmisc.c. |
|
|
|
|
|
Definition at line 67 of file gawkmisc.c. References emalloc. 00068 { 00069 pointer p; 00070 00071 emalloc(p, pointer, bytes, "xmalloc"); 00072 00073 return p; 00074 }
|