diff options
Diffstat (limited to 'make.h')
-rw-r--r-- | make.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -194,6 +194,8 @@ extern unsigned int get_path_max PARAMS ((void)); # include <unixlib.h> # include <unixio.h> # include <perror.h> +/* Needed to use alloca on VMS. */ +# include <builtins.h> #endif #ifndef __attribute__ @@ -485,7 +487,7 @@ extern const struct floc *reading_file; extern char **environ; extern int just_print_flag, silent_flag, ignore_errors_flag, keep_going_flag; -extern int print_data_base_flag, question_flag, touch_flag; +extern int print_data_base_flag, question_flag, touch_flag, always_make_flag; extern int env_overrides, no_builtin_rules_flag, no_builtin_variables_flag; extern int print_version_flag, print_directory_flag; extern int warn_undefined_variables_flag, posix_pedantic, not_parallel; |