diff options
author | Carl Worth <cworth@cworth.org> | 2010-05-25 14:40:47 -0700 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2010-05-25 14:40:47 -0700 |
commit | 9bb796f33ac67abdf6c0bf55a06b0d8448caa3d3 (patch) | |
tree | befa02f5970009d94154a652d8ca7c5e96e5b017 /glcpp.h | |
parent | 3ff81670848abb29b92e78f45080ad36cc85001c (diff) |
Add xtalloc_reference.
Yet another talloc wrapper that should come in handy.
Diffstat (limited to 'glcpp.h')
-rw-r--r-- | glcpp.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -164,4 +164,10 @@ xtalloc_strndup (const void *t, const char *p, size_t n); char * xtalloc_asprintf (const void *t, const char *fmt, ...); +void * +_xtalloc_reference_loc (const void *context, + const void *ptr, const char *location); + +#define xtalloc_reference(ctx, ptr) (_TALLOC_TYPEOF(ptr))_xtalloc_reference_loc((ctx),(ptr), __location__) + #endif |