Some formatting updates (ran the code through indent)

-Erik
This commit is contained in:
Erik Andersen
2000-02-08 19:58:47 +00:00
parent c0bf817bbc
commit e49d5ecbbe
163 changed files with 27109 additions and 26607 deletions

View File

@@ -1,4 +1,4 @@
/* vi: set sw=4 ts=4: */
/*
* Busybox main internal header file
*
@@ -218,7 +218,7 @@ static inline int setbit(char * addr,unsigned int nr)
{
int __res = bit(addr, nr);
addr[nr >> 3] |= (1<<(nr & 7));
return __res != 0; \
return __res != 0;
}
static inline int clrbit(char * addr,unsigned int nr)