summaryrefslogtreecommitdiff
path: root/os/xalloc.c
diff options
context:
space:
mode:
authorAdam Jackson <ajax@nwnk.net>2006-02-15 20:44:13 +0000
committerAdam Jackson <ajax@nwnk.net>2006-02-15 20:44:13 +0000
commitf105b8da11fcf337512b3c39da3368f98da07a33 (patch)
tree8d2c7b8ee5657f0d630bd50956819d77e2d071a5 /os/xalloc.c
parent010d6effa6fa210251b12459882e88aeee82c2c0 (diff)
Mark everything in dixsym.c as _X_EXPORT.
Diffstat (limited to 'os/xalloc.c')
-rw-r--r--os/xalloc.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/os/xalloc.c b/os/xalloc.c
index e1cdbfc5b..effe9514a 100644
--- a/os/xalloc.c
+++ b/os/xalloc.c
@@ -311,7 +311,7 @@ void XfreeTrap(void)
{
}
-void *
+_X_EXPORT void *
Xalloc (unsigned long amount)
{
register unsigned long *ptr;
@@ -466,7 +466,7 @@ Xalloc (unsigned long amount)
* "no failure" realloc, alternate interface to Xalloc w/o Must_have_memory
*****************/
-pointer
+_X_EXPORT pointer
XNFalloc (unsigned long amount)
{
register pointer ptr;
@@ -499,7 +499,7 @@ XNFalloc (unsigned long amount)
* Xcalloc
*****************/
-pointer
+_X_EXPORT pointer
Xcalloc (unsigned long amount)
{
pointer ret;
@@ -517,7 +517,7 @@ Xcalloc (unsigned long amount)
/*****************
* XNFcalloc
*****************/
-void *
+_X_EXPORT void *
XNFcalloc (unsigned long amount)
{
pointer ret;
@@ -536,7 +536,7 @@ XNFcalloc (unsigned long amount)
* Xrealloc
*****************/
-void *
+_X_EXPORT void *
Xrealloc (pointer ptr, unsigned long amount)
{
register unsigned long *new_ptr;
@@ -613,7 +613,7 @@ Xrealloc (pointer ptr, unsigned long amount)
* "no failure" realloc, alternate interface to Xrealloc w/o Must_have_memory
*****************/
-void *
+_X_EXPORT void *
XNFrealloc (pointer ptr, unsigned long amount)
{
if (( ptr = (pointer)Xrealloc( ptr, amount ) ) == NULL)
@@ -628,7 +628,7 @@ XNFrealloc (pointer ptr, unsigned long amount)
* calls free
*****************/
-void
+_X_EXPORT void
Xfree(pointer ptr)
{
unsigned long size;