aboutsummaryrefslogtreecommitdiff
path: root/include/dis-asm.h
diff options
context:
space:
mode:
authorDavid Taylor <taylor@redhat.com>1998-12-30 21:08:18 +0000
committerDavid Taylor <taylor@redhat.com>1998-12-30 21:08:18 +0000
commit8bb2eec8d944845c71cbdd4fb8fe86537e54bc38 (patch)
tree75d19248dda16e9f38e77e4d75b6be2cdae4870c /include/dis-asm.h
parent86df8e79fc5b70948fd5041c902c7934b2311476 (diff)
downloadgdb-8bb2eec8d944845c71cbdd4fb8fe86537e54bc38.zip
gdb-8bb2eec8d944845c71cbdd4fb8fe86537e54bc38.tar.gz
gdb-8bb2eec8d944845c71cbdd4fb8fe86537e54bc38.tar.bz2
change void * to PTR (two places).
Diffstat (limited to 'include/dis-asm.h')
-rw-r--r--include/dis-asm.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/dis-asm.h b/include/dis-asm.h
index 63b6eb0..5c164b1 100644
--- a/include/dis-asm.h
+++ b/include/dis-asm.h
@@ -12,7 +12,7 @@
#include <stdio.h>
#include "bfd.h"
-typedef int (*fprintf_ftype) PARAMS((FILE*, const char*, ...));
+typedef int (*fprintf_ftype) PARAMS((PTR, const char*, ...));
enum dis_insn_type {
dis_noninsn, /* Not a valid instruction */
@@ -37,7 +37,7 @@ enum dis_insn_type {
typedef struct disassemble_info {
fprintf_ftype fprintf_func;
- FILE *stream;
+ PTR stream;
PTR application_data;
/* Target description. We could replace this with a pointer to the bfd,