mirror of
https://github.com/opnsense/src.git
synced 2026-04-15 14:29:58 -04:00
Style: tab between #define and macro name.
This commit is contained in:
parent
653de878fc
commit
18db09bb8e
1 changed files with 4 additions and 4 deletions
|
|
@ -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_ */
|
||||
|
|
|
|||
Loading…
Reference in a new issue