Commit 1b98c00b authored by Josh Triplett's avatar Josh Triplett

Documentation/vm/page-types.c: Declare checked_open static

Nothing outside of Documentation/vm/page-types.c references
checked_open.
Signed-off-by: default avatarJosh Triplett <josh@joshtriplett.org>
parent ed9df091
...@@ -218,7 +218,7 @@ static void fatal(const char *x, ...) ...@@ -218,7 +218,7 @@ static void fatal(const char *x, ...)
exit(EXIT_FAILURE); exit(EXIT_FAILURE);
} }
int checked_open(const char *pathname, int flags) static int checked_open(const char *pathname, int flags)
{ {
int fd = open(pathname, flags); int fd = open(pathname, flags);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment