summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2024-02-19 11:56:59 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2024-02-19 11:56:59 -0800
commitf6dff7d9285cf5b328d1163e102eeb1234450aa1 (patch)
tree043396daeaa51fe2e26461197bef113679807bea
parent3826a58d190c2d8093d3586cb33867668cbb4553 (diff)
unifdef ATTSHAREDLIB
Was only defined for SGI Irix platforms in the imake configs, has never been defined since the conversion to autoconf Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r--src/globals.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/globals.c b/src/globals.c
index d5e7ad0..be252f5 100644
--- a/src/globals.c
+++ b/src/globals.c
@@ -47,22 +47,8 @@ from The Open Group.
#define SetZero(t,var,z) t var
#endif
-#ifdef ATTSHAREDLIB /* then need extra variables */
-/*
- * If we need to define extra variables for each global
- */
-#define ZEROINIT(t,var,val) SetZero(t,var,val); \
- SetZero (long, _libX_##var##Flag, 0); \
- SetZero (void *, _libX_##var##Ptr, NULL)
-
-#else /* else not ATTSHAREDLIB */
-/*
- * no extra crud
- */
#define ZEROINIT(t,var,val) SetZero (t, var, val)
-#endif /* ATTSHAREDLIB */
-
/*
* Error handlers; used to be in XlibInt.c