diff options
Diffstat (limited to 'dix/atom.c')
-rw-r--r-- | dix/atom.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dix/atom.c b/dix/atom.c index c968c1e5a..bcf212dee 100644 --- a/dix/atom.c +++ b/dix/atom.c @@ -166,7 +166,7 @@ NameForAtom(Atom atom) return node->string; } -void +_X_EXPORT void AtomError(void) { FatalError("initializing atoms"); @@ -184,7 +184,7 @@ FreeAtom(NodePtr patom) xfree(patom); } -void +_X_EXPORT void FreeAllAtoms(void) { if(atomRoot == (NodePtr)NULL) @@ -196,7 +196,7 @@ FreeAllAtoms(void) lastAtom = None; } -void +_X_EXPORT void InitAtoms(void) { FreeAllAtoms(); |