summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2009-05-29 15:10:36 -0700
committerH. Peter Anvin <hpa@zytor.com>2009-05-29 15:10:36 -0700
commit9ee338c78a77e2ca48a479c7a41c4843b616d588 (patch)
treeee7db31885a2dd22f16b35a1641044c90b5d16cf
parent8a6e0f4b1aa226d272f3b2ca9e411235fb558495 (diff)
downloadsyslinux-9ee338c78a77e2ca48a479c7a41c4843b616d588.tar.gz
Run Nindent on sample/hello.c
Automatically reformat sample/hello.c 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>
-rw-r--r--sample/hello.c23
1 files changed, 11 insertions, 12 deletions
diff --git a/sample/hello.c b/sample/hello.c
index e5460c35..25ceb8bb 100644
--- a/sample/hello.c
+++ b/sample/hello.c
@@ -22,23 +22,22 @@
static inline void memset(void *buf, int ch, unsigned int len)
{
- asm volatile("cld; rep; stosb"
- : "+D" (buf), "+c" (len) : "a" (ch) : "memory");
+ asm volatile ("cld; rep; stosb":"+D" (buf), "+c"(len):"a"(ch):"memory");
}
int __start(void)
{
- const char *msg = "Hello, World!\r\n";
- com32sys_t inreg;
- const char *p;
+ const char *msg = "Hello, World!\r\n";
+ com32sys_t inreg;
+ const char *p;
- memset(&inreg, 0, sizeof inreg);
+ memset(&inreg, 0, sizeof inreg);
- for ( p = msg ; *p ; p++ ) {
- inreg.edx.b[0] = *p;
- inreg.eax.b[1] = 0x02; /* Write Character */
- __com32.cs_intcall(0x21, &inreg, NULL);
- }
+ for (p = msg; *p; p++) {
+ inreg.edx.b[0] = *p;
+ inreg.eax.b[1] = 0x02; /* Write Character */
+ __com32.cs_intcall(0x21, &inreg, NULL);
+ }
- return 0;
+ return 0;
}