summaryrefslogtreecommitdiff
path: root/gs/src/gdevxalt.c
diff options
context:
space:
mode:
Diffstat (limited to 'gs/src/gdevxalt.c')
-rw-r--r--gs/src/gdevxalt.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/gs/src/gdevxalt.c b/gs/src/gdevxalt.c
index 9149f809f..880c9aeb5 100644
--- a/gs/src/gdevxalt.c
+++ b/gs/src/gdevxalt.c
@@ -25,7 +25,6 @@
#include "gdevx.h"
extern const gx_device_X gs_x11_device;
-extern const gx_device_X gs_x11alpha_device;
/*
* Define a forwarding device with a cache for the first 16 colors,
@@ -843,20 +842,3 @@ x_rg32x_alt_map_color(gx_device * dev, gx_color_index color,
rgb[2] = ((color >> 11) & 0x3ff) * gx_max_color_value / 0x3ff;
return -1;
}
-
-#ifdef GS_DEVS_SHARED
-extern void gs_lib_register_device(const gx_device *dev);
-void
-gs_shared_init(void)
-{
- gs_lib_register_device(&gs_x11_device);
- gs_lib_register_device(&gs_x11alpha_device);
- gs_lib_register_device(&gs_x11cmyk_device);
- gs_lib_register_device(&gs_x11cmyk2_device);
- gs_lib_register_device(&gs_x11cmyk4_device);
- gs_lib_register_device(&gs_x11cmyk8_device);
- gs_lib_register_device(&gs_x11gray2_device);
- gs_lib_register_device(&gs_x11gray4_device);
- gs_lib_register_device(&gs_x11mono_device);
-}
-#endif