summaryrefslogtreecommitdiff
path: root/gcc/mbchar.h
diff options
context:
space:
mode:
authorYamaArashi <shadow962@live.com>2016-02-16 01:03:54 -0800
committerYamaArashi <shadow962@live.com>2016-02-16 01:03:54 -0800
commitecae31d652106c1f3b7429570de013c3bbf33e7a (patch)
tree6981957216b10aad71c792714a25c5750611754e /gcc/mbchar.h
parent9382e1a90b218b4b93bf53c01ef163925cf224dc (diff)
get rid of PROTO macros
Diffstat (limited to 'gcc/mbchar.h')
-rwxr-xr-xgcc/mbchar.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/mbchar.h b/gcc/mbchar.h
index 65f281a..d53ebeb 100755
--- a/gcc/mbchar.h
+++ b/gcc/mbchar.h
@@ -30,9 +30,9 @@ Boston, MA 02111-1307, USA. */
#define ISEUCJP(c) ((c) >= 0xa1 && (c) <= 0xfe)
#define ISJIS(c) ((c) >= 0x21 && (c) <= 0x7e)
-int local_mbtowc PROTO ((wchar_t *, const char *, size_t));
-int local_mblen PROTO ((const char *, size_t));
-int local_mb_cur_max PROTO ((void));
+int local_mbtowc (wchar_t *, const char *, size_t);
+int local_mblen (const char *, size_t);
+int local_mb_cur_max (void);
/* The locale being used for multibyte characters in string/char literals. */
extern char *literal_codeset;