aboutsummaryrefslogtreecommitdiff
path: root/gcc/mbchar.h
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2003-07-06 11:56:09 +0200
committerAndreas Jaeger <aj@gcc.gnu.org>2003-07-06 11:56:09 +0200
commit0c20a65f04004843874f9e22c460207285dfdec1 (patch)
tree4fb7a1aaa85c3c4aeda23d46346034b73d069df2 /gcc/mbchar.h
parent391cfc46896ec536a390f09b192b58c558e02b05 (diff)
downloadgcc-0c20a65f04004843874f9e22c460207285dfdec1.zip
gcc-0c20a65f04004843874f9e22c460207285dfdec1.tar.gz
gcc-0c20a65f04004843874f9e22c460207285dfdec1.tar.bz2
jump.c: Convert prototypes to ISO C90.
* jump.c: Convert prototypes to ISO C90. * langhooks-def.h: Likewise. Add extern to prototypes. * langhooks.c: Likewise. * langhooks.h: Likewise. * lcm.c: Likewise. * local-alloc.c: Likewise. * loop-init.c: Likewise. * loop-unroll.c: Likewise. * loop-unswitch.c: Likewise. * loop.c: Likewise. * loop.h: Likewise. Add extern to prototypes. * machmode.h: Likewise. * main.c: Likewise. * mbchar.c: Likewise. * mbchar.h: Likewise. * mkdeps.c: Likewise. * mkdeps.h: Likewise. * optabs.c: Likewise. * optabs.h: Likewise. * output.h: Likewise. * gccspec.c: Likwise. * postreload.c: Likewise. * prefix.c: Likewise. * prefix.h: Likewise. * print-rtl.c: Likewise. * print-tree.c: Likewise. * profile.c: Likewise. * read-rtl.c: Likewise. * real.c: Likewise. * real.h: Likewise. * recog.c: Likewise. * recog.h: Likewise. * reg-stack.c: Likewise. * regclass.c: Likewise. * regmove.c: Likewise. * regrename.c: Likewise. * regs.h: Likewise. * reload.c: Likewise. * reload.h: Likewise. * reload1.c: Likewise. * reorg.c: Likewise. * resource.c: Likewise. * resource.h: Likewise. * rtl-error.c: Likewise. * rtl.c: Likewise. * rtl.h: Likewise. * rtlanal.c: Likewise. From-SVN: r68998
Diffstat (limited to 'gcc/mbchar.h')
-rw-r--r--gcc/mbchar.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/mbchar.h b/gcc/mbchar.h
index 44f8398..3846a8c 100644
--- a/gcc/mbchar.h
+++ b/gcc/mbchar.h
@@ -1,5 +1,5 @@
/* Various declarations for functions found in mbchar.c
- Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc.
+ Copyright (C) 1998, 1999, 2000, 2003 Free Software Foundation, Inc.
This file is part of GCC.
@@ -31,9 +31,9 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
#define ISEUCJP(c) ((c) >= 0xa1 && (c) <= 0xfe)
#define ISJIS(c) ((c) >= 0x21 && (c) <= 0x7e)
-extern int local_mbtowc PARAMS ((wchar_t *, const char *, size_t));
-extern int local_mblen PARAMS ((const char *, size_t));
-extern int local_mb_cur_max PARAMS ((void));
+extern int local_mbtowc (wchar_t *, const char *, size_t);
+extern int local_mblen (const char *, size_t);
+extern int local_mb_cur_max (void);
/* The locale being used for multibyte characters in string/char literals. */
extern const char *literal_codeset;