diff options
author | David Taylor <taylor@redhat.com> | 1998-12-30 21:08:18 +0000 |
---|---|---|
committer | David Taylor <taylor@redhat.com> | 1998-12-30 21:08:18 +0000 |
commit | 8bb2eec8d944845c71cbdd4fb8fe86537e54bc38 (patch) | |
tree | 75d19248dda16e9f38e77e4d75b6be2cdae4870c /include/dis-asm.h | |
parent | 86df8e79fc5b70948fd5041c902c7934b2311476 (diff) | |
download | gdb-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.h | 4 |
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, |