aboutsummaryrefslogtreecommitdiff
path: root/toys/other
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2017-01-27 15:55:28 -0800
committerRob Landley <rob@landley.net>2017-01-28 17:41:16 -0600
commit70f7f10476311288049565573338a4a821cef8a5 (patch)
tree35c53bf0effb587ca67e3f21ab63ccb9c62797aa /toys/other
parent8ceb2dec8b7233385c1b2983c907592c46a48bd8 (diff)
downloadtoybox-70f7f10476311288049565573338a4a821cef8a5.tar.gz
Add missing `static`s and remove an unused function.
Diffstat (limited to 'toys/other')
-rw-r--r--toys/other/acpi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/other/acpi.c b/toys/other/acpi.c
index 2f856c8d..b73cff95 100644
--- a/toys/other/acpi.c
+++ b/toys/other/acpi.c
@@ -29,7 +29,7 @@ GLOBALS(
char *cpath;
)
-int read_int_at(int dirfd, char *name)
+static int read_int_at(int dirfd, char *name)
{
int fd, ret=0;
FILE *fil;