Style: tab between #define and macro name.

This commit is contained in:
Tim J. Robbins 2002-09-12 23:33:17 +00:00
parent 653de878fc
commit 18db09bb8e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=103269

View file

@ -71,7 +71,7 @@
#include <sys/_types.h>
#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_ */