diff options
Diffstat (limited to '')
| -rw-r--r-- | src/c_unixize.c | 3 | 
1 files changed, 3 insertions, 0 deletions
diff --git a/src/c_unixize.c b/src/c_unixize.c index 880f0a4..2a0ed43 100644 --- a/src/c_unixize.c +++ b/src/c_unixize.c @@ -45,6 +45,8 @@   * This is the main function and entrypoint of the program.   */ +#include <sys/param.h> +  #include <dirent.h>  #include <errno.h>  #include <stdio.h> @@ -69,6 +71,7 @@ main  	struct opts_s opts;  	int nargc;  	char** nargv; +	static char subpath[MAXPATHLEN];  	if (c_get_opts(&opts, argc, argv) == FALSE) {  		return (0);  | 
