diff options
Diffstat (limited to 'lib/env.c')
-rw-r--r-- | lib/env.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -8,7 +8,7 @@ extern char **environ; // Returns the number of bytes taken by the environment variables. For use // when calculating the maximum bytes of environment+argument data that can // be passed to exec for find(1) and xargs(1). -long environ_bytes() +long environ_bytes(void) { long bytes = sizeof(char *); char **ev; |