diff options
author | H. Peter Anvin <hpa@zytor.com> | 2009-05-29 15:10:32 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2009-05-29 15:10:32 -0700 |
commit | 3882592a6c3586f07b73707c4408b099acfe9ce8 (patch) | |
tree | 7a031198fb772a2cfe17a51b365d299e9a2213d0 /dos | |
parent | cf32bf7e4e926d10c536e146ca48c3112309f1ec (diff) | |
download | syslinux.git-3882592a6c3586f07b73707c4408b099acfe9ce8.tar.gz syslinux.git-3882592a6c3586f07b73707c4408b099acfe9ce8.tar.xz syslinux.git-3882592a6c3586f07b73707c4408b099acfe9ce8.zip |
Run Nindent on dos/mystuff.h
Automatically reformat dos/mystuff.h using Nindent.
Do this for all files except HDT, gPXE and externally maintained
libraries (zlib, tinyjpeg, libpng).
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'dos')
-rw-r--r-- | dos/mystuff.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/dos/mystuff.h b/dos/mystuff.h index 83f072f5..fbf4e75b 100644 --- a/dos/mystuff.h +++ b/dos/mystuff.h @@ -6,10 +6,9 @@ unsigned int skip_atou(const char **s); unsigned int atou(const char *s); -static inline int -isdigit(int ch) +static inline int isdigit(int ch) { - return (ch >= '0') && (ch <= '9'); + return (ch >= '0') && (ch <= '9'); } #endif /* MYSTUFF_H */ |