diff options
Diffstat (limited to 'libXmu/src/Atoms.c')
-rw-r--r-- | libXmu/src/Atoms.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/libXmu/src/Atoms.c b/libXmu/src/Atoms.c index 6f0ca64a0..d80f57ad5 100644 --- a/libXmu/src/Atoms.c +++ b/libXmu/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" ) |