Skip to content

Commit

Permalink
be a bit selfish
Browse files Browse the repository at this point in the history
  • Loading branch information
vapier committed Feb 23, 2022
1 parent 2cff5da commit 1f9af6a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pcalc.y
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ int main(int argc, char *argv[])

if(!argv[1])
{
printf("Programmer's calculator by Peter Glen. Version " VERSION "\n\n");
printf("Programmer's calculator by Peter Glen & Mike Frysinger. Version " VERSION "\n\n");
basehelp();
help_help();
exit(0);
Expand Down Expand Up @@ -302,7 +302,7 @@ void warning(const char *s, const char *t)
static void print_usage(void)
{
printf(
"Programmer's calculator by Peter Glen.\n\n"
"Programmer's calculator by Peter Glen & Mike Frysinger.\n\n"
"Usage: pcalc <stuff to calculate>\n"
" pcalc @script\n"
"\nOptions:\n"
Expand All @@ -317,7 +317,7 @@ static void print_usage(void)

static void print_version(void)
{
puts("Programmer's calculator by Peter Glen. Version " VERSION);
puts("Programmer's calculator by Peter Glen & Mike Frysinger. Version " VERSION);
exit(0);
}

Expand Down

0 comments on commit 1f9af6a

Please sign in to comment.