summaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'main.c')
-rw-r--r--main.c12
1 files changed, 11 insertions, 1 deletions
diff --git a/main.c b/main.c
index b1158ea..ba41dd4 100644
--- a/main.c
+++ b/main.c
@@ -1,3 +1,14 @@
+/* Copyright (C) 2021 Gentoo-libre Install
+
+ This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
@@ -51,7 +62,6 @@ for(int i = 0; i < 12; ++i){returnPos[i] = 0;}//zero out the stack
if(!argv[1]){fprintf(stderr,"Usage: %s <program>\n", argv[0]); return 1;}
-//FILE *input = fopen("PONG", "r");
FILE *input = fopen(argv[1], "r");
if (!input){fprintf(stderr, "Program not found.\n"); return 1;}