From bf17ce1d3fa40505b1aaa5b20d1163ca93a96615 Mon Sep 17 00:00:00 2001 From: Jeff Squyres Date: Wed, 1 Apr 2009 18:09:25 +0000 Subject: [PATCH] Doh; forgot to add the OPAL_DECLSPEC to munmap(). This commit was SVN r20923. --- opal/mca/memory/ptmalloc2/opal_ptmalloc2_munmap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opal/mca/memory/ptmalloc2/opal_ptmalloc2_munmap.c b/opal/mca/memory/ptmalloc2/opal_ptmalloc2_munmap.c index 16314eb196..445d35be73 100644 --- a/opal/mca/memory/ptmalloc2/opal_ptmalloc2_munmap.c +++ b/opal/mca/memory/ptmalloc2/opal_ptmalloc2_munmap.c @@ -47,7 +47,7 @@ int __munmap(void* addr, size_t len); /* intercept munmap, as the user can give back memory that way as well. */ -int +OPAL_DECLSPEC int munmap(void* addr, size_t len) { return opal_mem_free_ptmalloc2_munmap(addr, len, 0);