summaryrefslogtreecommitdiff
path: root/cscmd/xalloc.h
blob: 3c9691ba5fe9418b3a42986c63c87db5d6eda050 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef    __XALLOC_H
#define    __XALLOC_H


#ifdef __cplusplus
extern "C" {
#endif


extern void *xmalloc  ( size_t );
extern void *xrealloc ( void *, size_t );


#ifdef __cplusplus
}
#endif

#endif  /* __XALLOC_H */