some changes were made?

This commit is contained in:
2025-10-20 21:36:56 -04:00
parent 4fef50297d
commit 8a28118672

View File

@@ -8,6 +8,7 @@
// Usage: yait [OPTION]... <PROJECT>
#include <config.h>
#include <errno.h>
#include <getopt.h>
#include <limits.h>
@@ -22,8 +23,6 @@
#include <stdbool.h>
#include <time.h>
#include <config.h>
#include "licence.h"
#include "../lib/err.h"
#include "../lib/fs.h"
@@ -105,16 +104,15 @@ int main(int argc, char **argv)
int optc;
int lose = 0;
char *package;
set_prog_name(argv[0]);
exit_status = EXIT_SUCCESS;
bool quiet = false;
bool force = false;
bool editor = false;
bool shell = false;
char *author = get_name();
exit_status = EXIT_SUCCESS;
int year = get_year();
licence_t licence = BSD;
set_prog_name(argv[0]);
parse_standard_options(argc, argv, print_help, print_version);