diff options
author | Alan Modra <amodra@gmail.com> | 2003-08-07 02:25:50 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2003-08-07 02:25:50 +0000 |
commit | 8cf3f354675d0645b5c6fef1237d263ce2e251eb (patch) | |
tree | c8ece8c9f70334557186aa13758f56b8bcbb1481 /include/opcode/pj.h | |
parent | 1fa1d2cdfc4c9a81fb04dea853cc215a6076f141 (diff) | |
download | gdb-8cf3f354675d0645b5c6fef1237d263ce2e251eb.zip gdb-8cf3f354675d0645b5c6fef1237d263ce2e251eb.tar.gz gdb-8cf3f354675d0645b5c6fef1237d263ce2e251eb.tar.bz2 |
Convert to C90.
Diffstat (limited to 'include/opcode/pj.h')
-rw-r--r-- | include/opcode/pj.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/opcode/pj.h b/include/opcode/pj.h index 5779507..f9e44db 100644 --- a/include/opcode/pj.h +++ b/include/opcode/pj.h @@ -1,5 +1,5 @@ /* Definitions for decoding the picoJava opcode table. - Copyright 1999 Free Software Foundation, Inc. + Copyright 1999, 2002, 2003 Free Software Foundation, Inc. Contributed by Steve Chamberlain of Transmeta (sac@pobox.com). This program is free software; you can redistribute it and/or modify @@ -44,6 +44,6 @@ typedef struct pj_opc_info_t unsigned char arg[2]; union { const char *name; - void (*func) PARAMS ((struct pj_opc_info_t *, char *)); + void (*func) (struct pj_opc_info_t *, char *); } u; } pj_opc_info_t; |