diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2006-04-03 13:55:03 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2006-04-03 13:55:03 +0000 |
commit | 5451f01dad96305165c2903f86c47224d116ad5a (patch) | |
tree | a4c0699a37687b38937637cdeba735845e4dad6f /usr.bin | |
parent | bfeba2029aeaaf43fcc0df2023c0ae97d211423c (diff) |
reflect reality, wchar_t has been int on OpenBSD for about a year now.
okay millert@
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/xlint/lint1/param.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/xlint/lint1/param.h b/usr.bin/xlint/lint1/param.h index c385c365d0c..978f7598493 100644 --- a/usr.bin/xlint/lint1/param.h +++ b/usr.bin/xlint/lint1/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.13 2006/01/16 08:07:31 otto Exp $ */ +/* $OpenBSD: param.h,v 1.14 2006/04/03 13:55:02 espie Exp $ */ /* $NetBSD: param.h,v 1.6 1996/04/01 21:47:57 mark Exp $ */ /* @@ -67,7 +67,7 @@ /* * Make sure this matches wchar_t. */ -#define WCHAR SHORT +#define WCHAR INT #ifndef __GNUC__ #ifndef lint |