diff options
author | Thomas Adam <thomas@xteddy.org> | 2016-02-07 00:04:46 +0000 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2016-02-07 00:04:46 +0000 |
commit | f7c8f1ae291b0211734fe2c902a786033a9e0f3f (patch) | |
tree | 24c0cb5cedafb9f538338b75557f6e4d61a82cbd | |
parent | ba97ae1737fbbdc7d6cd4ce4f8f0b4a3d77f027e (diff) | |
download | rtmux-f7c8f1ae291b0211734fe2c902a786033a9e0f3f.tar.gz rtmux-f7c8f1ae291b0211734fe2c902a786033a9e0f3f.tar.bz2 rtmux-f7c8f1ae291b0211734fe2c902a786033a9e0f3f.zip |
xmalloc: define __bounded__ where necessary
-rw-r--r-- | xmalloc.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -19,6 +19,10 @@ #ifndef XMALLOC_H #define XMALLOC_H +#if !defined(__bounded__) +# define __bounded__(x, y, z) +#endif + void *xmalloc(size_t); void *xcalloc(size_t, size_t); void *xrealloc(void *, size_t); |