diff options
Diffstat (limited to 'gs/src/gdevlbp8.c')
-rw-r--r-- | gs/src/gdevlbp8.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/gs/src/gdevlbp8.c b/gs/src/gdevlbp8.c index 87aeb0f60..534b40a8e 100644 --- a/gs/src/gdevlbp8.c +++ b/gs/src/gdevlbp8.c @@ -43,9 +43,7 @@ problems /* The device descriptors */ private dev_proc_print_page(lbp8_print_page); -#ifdef NOCONTRIB private dev_proc_print_page(lips3_print_page); -#endif const gx_device_printer far_data gs_lbp8_device = prn_device(prn_std_procs, "lbp8", @@ -54,7 +52,6 @@ const gx_device_printer far_data gs_lbp8_device = 0.16, 0.2, 0.32, 0.21, /* margins: left, bottom, right, top */ 1, lbp8_print_page); -#ifdef NOCONTRIB const gx_device_printer far_data gs_lips3_device = prn_device(prn_std_procs, "lips3", 82, /* width_10ths, 8.3" */ @@ -62,7 +59,6 @@ const gx_device_printer far_data gs_lips3_device = X_DPI, Y_DPI, 0.16, 0.27, 0.23, 0.27, /* margins */ 1, lips3_print_page); -#endif /* ------ Internal routines ------ */ @@ -82,7 +78,6 @@ static const char lbp8_init[] = { static const char *lbp8_end = NULL; -#ifdef NOCONTRIB static const char lips3_init[] = { ESC, '<', /* soft reset */ DCS, '0', 'J', ST, /* JOB END */ @@ -99,7 +94,6 @@ static const char lips3_init[] = { static const char lips3_end[] = { DCS, '0', 'J', ST /* JOB END */ }; -#endif /* Send the page to the printer. */ private int @@ -205,11 +199,9 @@ lbp8_print_page(gx_device_printer *pdev, FILE *prn_stream) lbp8_end, sizeof(lbp8_end)); } -#ifdef NOCONTRIB /* Print a LIPS III page. */ private int lips3_print_page(gx_device_printer *pdev, FILE *prn_stream) { return can_print_page(pdev, prn_stream, lips3_init, sizeof(lips3_init), lips3_end, sizeof(lips3_end)); } -#endif |