From 18db09bb8ef3bb5669c59d6fcaa92f9e605dbfcb Mon Sep 17 00:00:00 2001 From: "Tim J. Robbins" Date: Thu, 12 Sep 2002 23:33:17 +0000 Subject: [PATCH] Style: tab between #define and macro name. --- include/wchar.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/wchar.h b/include/wchar.h index f0fdb2cb7ae..f4ce405d7e6 100644 --- a/include/wchar.h +++ b/include/wchar.h @@ -71,7 +71,7 @@ #include #ifndef NULL -#define NULL 0 +#define NULL 0 #endif #ifndef _MBSTATE_T_DECLARED @@ -162,8 +162,8 @@ int wcwidth(wchar_t); __END_DECLS #define getwc(fp) fgetwc(fp) -#define getwchar() fgetwc(stdin) -#define putwc(wc, fp) fputwc((wc), (fp)) -#define putwchar(wc) fputwc((wc), stdout) +#define getwchar() fgetwc(stdin) +#define putwc(wc, fp) fputwc((wc), (fp)) +#define putwchar(wc) fputwc((wc), stdout) #endif /* !_WCHAR_H_ */