diff options
author | Henry Stiles <henry.stiles@artifex.com> | 2003-05-02 05:44:20 +0000 |
---|---|---|
committer | Henry Stiles <henry.stiles@artifex.com> | 2003-05-02 05:44:20 +0000 |
commit | 1001dab40a89b1629d119a31330ef8b22a62fdf5 (patch) | |
tree | 6c84d803c60c9b4ff70f742642b83be2e2126cdb /pcl/pgmisc.h | |
parent | a20933c2e00ab63f44aab1e321db0edb34a4cf9f (diff) |
Removes P declaration macros used to support K&R as part of the gs 8.x
upgrade.
git-svn-id: http://svn.ghostscript.com/ghostpcl/trunk/ghostpcl@1893 06663e23-700e-0410-b217-a244a6096597
Diffstat (limited to 'pcl/pgmisc.h')
-rw-r--r-- | pcl/pgmisc.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pcl/pgmisc.h b/pcl/pgmisc.h index cdd76caca..cfcb82979 100644 --- a/pcl/pgmisc.h +++ b/pcl/pgmisc.h @@ -17,10 +17,10 @@ #ifndef pgmisc_INCLUDED # define pgmisc_INCLUDED -void hpgl_set_lost_mode(P2(hpgl_state_t *pgls, hpgl_lost_mode_t lost_mode)); +void hpgl_set_lost_mode(hpgl_state_t *pgls, hpgl_lost_mode_t lost_mode); /* get the current setting of the edge pen set by CF, NB this should be in a different header file */ -int32 hpgl_get_character_edge_pen(P1(hpgl_state_t *pgls)); +int32 hpgl_get_character_edge_pen(hpgl_state_t *pgls); /* macro to see if we are in lost mode */ #define hpgl_lost (pgls->g.lost_mode == hpgl_lost_mode_entered) @@ -32,8 +32,8 @@ int32 hpgl_get_character_edge_pen(P1(hpgl_state_t *pgls)); #ifdef DEBUG -void hpgl_error(P0()); -int hpgl_print_error(P4(const char *function, const char *file, int line, int code)); +void hpgl_error(void); +int hpgl_print_error(const char *function, const char *file, int line, int code); # ifdef __GNUC__ # define hpgl_call_note_error(code)\ |