summaryrefslogtreecommitdiff
path: root/src/Atoms.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/Atoms.c')
-rw-r--r--src/Atoms.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/Atoms.c b/src/Atoms.c
index 6f0ca64..d80f57a 100644
--- a/src/Atoms.c
+++ b/src/Atoms.c
@@ -54,14 +54,8 @@ struct _AtomRec {
DisplayRec* head;
};
-#ifdef SUNSHLIB
-#define STATIC
-#else
-#define STATIC static
-#endif
-
#define DeclareAtom(atom,text) \
-STATIC struct _AtomRec __##atom = { text, NULL }; \
+static struct _AtomRec __##atom = { text, NULL }; \
AtomPtr _##atom = &__##atom;
DeclareAtom(XA_ATOM_PAIR, "ATOM_PAIR" )