summaryrefslogtreecommitdiff
path: root/gs/src/idebug.h
diff options
context:
space:
mode:
authorL Peter Deutsch <lpd@ghostscript.com>2002-06-16 04:47:10 +0000
committerL Peter Deutsch <lpd@ghostscript.com>2002-06-16 04:47:10 +0000
commitcc2a9d80f67927b4ced855075545a0b505f22903 (patch)
tree1f576b376eb351bae20f0ca600ee7fbb813c58fd /gs/src/idebug.h
parente2d03ade79d01f954cb0f9afb4338f1e4b583099 (diff)
Removes all uses of the now-deprecated Pn macros from PostScript interpreter
header files. git-svn-id: http://svn.ghostscript.com/ghostscript/trunk@2742 a1074d23-0009-0410-80fe-cf8c14f379e6
Diffstat (limited to 'gs/src/idebug.h')
-rw-r--r--gs/src/idebug.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/gs/src/idebug.h b/gs/src/idebug.h
index a62392758..1acda2494 100644
--- a/gs/src/idebug.h
+++ b/gs/src/idebug.h
@@ -21,21 +21,21 @@
# define idebug_INCLUDED
/* Print individual values. */
-void debug_print_name(P1(const ref *));
-void debug_print_name_index(P1(uint /*name_index_t*/));
-void debug_print_ref(P1(const ref *));
-void debug_print_ref_packed(P1(const ref_packed *));
+void debug_print_name(const ref *);
+void debug_print_name_index(uint /*name_index_t*/);
+void debug_print_ref(const ref *);
+void debug_print_ref_packed(const ref_packed *);
/* Dump regions of memory. */
-void debug_dump_one_ref(P1(const ref *));
-void debug_dump_refs(P3(const ref * from, uint size, const char *msg));
-void debug_dump_array(P1(const ref * array));
+void debug_dump_one_ref(const ref *);
+void debug_dump_refs(const ref * from, uint size, const char *msg);
+void debug_dump_array(const ref * array);
/* Dump a stack. Using this requires istack.h. */
#ifndef ref_stack_DEFINED
typedef struct ref_stack_s ref_stack_t; /* also defined in isdata.h */
# define ref_stack_DEFINED
#endif
-void debug_dump_stack(P2(const ref_stack_t * pstack, const char *msg));
+void debug_dump_stack(const ref_stack_t * pstack, const char *msg);
#endif /* idebug_INCLUDED */