X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=include%2Flibfirm%2Fadt%2Fxmalloc.h;h=85a45a302352ec82e612c5e04e350236c23e89ce;hb=eb82a99086ca6379127315bbe25f7c2c89e26297;hp=37653f13b3a9d3964689f241047aff389396d9a4;hpb=c021732d2f0c04113e6afd153a7a9be38e40ca6f;p=libfirm diff --git a/include/libfirm/adt/xmalloc.h b/include/libfirm/adt/xmalloc.h index 37653f13b..85a45a302 100644 --- a/include/libfirm/adt/xmalloc.h +++ b/include/libfirm/adt/xmalloc.h @@ -44,9 +44,9 @@ /* xmalloc() & friends. */ -void *xmalloc(size_t size); -void *xrealloc(void *ptr, size_t size); -char *xstrdup(const char *str); +FIRM_API void *xmalloc(size_t size); +FIRM_API void *xrealloc(void *ptr, size_t size); +FIRM_API char *xstrdup(const char *str); #define xfree(ptr) free(ptr)