Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Modra <modra@gmail.com>2003-08-07 06:25:50 +0400
committerAlan Modra <modra@gmail.com>2003-08-07 06:25:50 +0400
commit61982e3c094083f483ef04a1ab02e6159e13f7bb (patch)
tree18f1ca29d431bebf16eac7427f57c9a43d2ea870 /include/opcode/pj.h
parent0601b11fb647ed948cb0e2ad33ece143532631fb (diff)
Convert to C90.
Diffstat (limited to 'include/opcode/pj.h')
-rw-r--r--include/opcode/pj.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/opcode/pj.h b/include/opcode/pj.h
index 5779507be..f9e44dbef 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;