summaryrefslogtreecommitdiff
path: root/gs/src/gxtmap.h
diff options
context:
space:
mode:
authorL Peter Deutsch <lpd@ghostscript.com>2002-06-16 08:45:43 +0000
committerL Peter Deutsch <lpd@ghostscript.com>2002-06-16 08:45:43 +0000
commitd48e6465e05c393fe7bd63c072b7f6f507ad91c3 (patch)
treec131da1775ad3087ea0eb1018da9b5d76f1ba095 /gs/src/gxtmap.h
parentef512bbc1dc90e7af63ce03817669169e62117f2 (diff)
Removes all uses of the now-deprecated Pn macros from the remaining
library header files. git-svn-id: http://svn.ghostscript.com/ghostscript/trunk@2748 a1074d23-0009-0410-80fe-cf8c14f379e6
Diffstat (limited to 'gs/src/gxtmap.h')
-rw-r--r--gs/src/gxtmap.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/gs/src/gxtmap.h b/gs/src/gxtmap.h
index 136414e44..14516234d 100644
--- a/gs/src/gxtmap.h
+++ b/gs/src/gxtmap.h
@@ -33,15 +33,15 @@ typedef struct gx_transfer_map_s gx_transfer_map;
* Define the type of a mapping procedure. There are two forms of this.
* The original form passed only the transfer map itself as an argument:
*/
-typedef float (*gs_mapping_proc) (P2(floatp, const gx_transfer_map *));
+typedef float (*gs_mapping_proc) (floatp, const gx_transfer_map *);
/*
* Later, we recognized that this procedure should really be a general
* closure:
*/
-typedef float (*gs_mapping_closure_proc_t) (P3(floatp value,
- const gx_transfer_map * pmap,
- const void *proc_data));
+typedef float (*gs_mapping_closure_proc_t) (floatp value,
+ const gx_transfer_map * pmap,
+ const void *proc_data);
typedef struct gs_mapping_closure_s {
gs_mapping_closure_proc_t proc;
const void *data;