Mark local functions as static

Warned-by: gcc
This commit is contained in:
Guillem Jover
2021-02-19 06:49:24 +01:00
parent e35d9141dc
commit 25278891d8
3 changed files with 6 additions and 6 deletions

View File

@@ -79,7 +79,7 @@ sys_close_range(unsigned int fd, unsigned int max_fd, unsigned int flags)
* Close all file descriptors greater than or equal to lowfd.
* This is the expensive (fallback) method.
*/
void
static void
closefrom_fallback(int lowfd)
{
long fd, maxfd;