projects
/
oweals
/
busybox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f0623a2
)
Rearrange order of type qualifiers.
author
"Robert P. J. Day"
<rpjday@mindspring.com>
Tue, 18 Jul 2006 11:33:44 +0000
(11:33 -0000)
committer
"Robert P. J. Day"
<rpjday@mindspring.com>
Tue, 18 Jul 2006 11:33:44 +0000
(11:33 -0000)
debianutils/which.c
patch
|
blob
|
history
diff --git
a/debianutils/which.c
b/debianutils/which.c
index 35c21e1818da43bef02f98ffd1bbfbc09770ff5e..8dd20d0978e7462dbb52e365752c2feda17b33fb 100644
(file)
--- a/
debianutils/which.c
+++ b/
debianutils/which.c
@@
-17,7
+17,7
@@
#include <sys/stat.h>
-static int is_executable_file(const char
const *
a, struct stat *b)
+static int is_executable_file(const char
* const
a, struct stat *b)
{
return (!access(a,X_OK) && !stat(a, b) && S_ISREG(b->st_mode));
}