aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-02-19 22:41:55 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-02-19 22:41:55 +0000
commite5570da2cffbec12b99d99a11d20c5f2371d5b0f (patch)
tree0bee5a72475e15862f09bc409556ccbb13e5cc15 /shell
parent5cedb75aa76bb766b6f63a5bf7cc9572a87089d0 (diff)
downloadbusybox-e5570da2cffbec12b99d99a11d20c5f2371d5b0f.tar.gz
ash: tiny style fixes
Diffstat (limited to 'shell')
-rw-r--r--shell/ash.c24
1 files changed, 16 insertions, 8 deletions
diff --git a/shell/ash.c b/shell/ash.c
index c1b5841dd..242e3b765 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -228,7 +228,8 @@ static void sh_warnx(const char *, ...);
#if ENABLE_ASH_OPTIMIZE_FOR_SIZE
static void
-inton(void) {
+inton(void)
+{
if (--suppressint == 0 && intpending) {
onint();
}
@@ -2217,7 +2218,8 @@ unaliascmd(int argc, char **argv)
}
static struct alias *
-freealias(struct alias *ap) {
+freealias(struct alias *ap)
+{
struct alias *next;
if (ap->flag & ALIASINUSE) {
@@ -2233,7 +2235,8 @@ freealias(struct alias *ap) {
}
static void
-printalias(const struct alias *ap) {
+printalias(const struct alias *ap)
+{
out1fmt("%s=%s\n", ap->name, single_quote(ap->val));
}
@@ -2548,7 +2551,8 @@ exraise(int e)
* defensive programming.)
*/
static void
-onint(void) {
+onint(void)
+{
int i;
intpending = 0;
@@ -4539,7 +4543,8 @@ static char * preglob(const char *pattern, int quoted, int flag)
static size_t
-esclen(const char *start, const char *p) {
+esclen(const char *start, const char *p)
+{
size_t esc = 0;
while (p > start && *--p == CTLESC) {
@@ -5247,7 +5252,8 @@ evalvar(char *p, int flag)
* Put a string on the stack.
*/
static void
-memtodest(const char *p, size_t len, int syntax, int quotes) {
+memtodest(const char *p, size_t len, int syntax, int quotes)
+{
char *q = expdest;
q = makestrspace(len * 2, q);
@@ -7722,7 +7728,8 @@ xtcsetpgrp(int fd, pid_t pgrp)
#endif /* JOBS */
static int
-getstatus(struct job *job) {
+getstatus(struct job *job)
+{
int status;
int retval;
@@ -9661,7 +9668,8 @@ command(void)
static union node *
-simplecmd(void) {
+simplecmd(void)
+{
union node *args, **app;
union node *n = NULL;
union node *vars, **vpp;