Main Page | Class List | Directories | File List | Class Members | File Members

gawkmisc.c File Reference

#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)


Typedef Documentation

typedef char* pointer
 

Definition at line 61 of file gawkmisc.c.


Function Documentation

pointer xmalloc P (size_t bytes)   ) 
 

pointer xmalloc size_t  bytes  ) 
 

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 }


© sourcejam.com 2005-2008