summaryrefslogtreecommitdiffstats
path: root/Tests/Assembler/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/Assembler/main.c')
-rw-r--r--Tests/Assembler/main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Tests/Assembler/main.c b/Tests/Assembler/main.c
index 6cbf24d..77f7b22 100644
--- a/Tests/Assembler/main.c
+++ b/Tests/Assembler/main.c
@@ -2,10 +2,10 @@
#ifdef __CLASSIC_C__
int main(){
- int ac;
- char*av[];
+ int argc;
+ char*argv[];
#else
-int main(int ac, char*av[]){
+int main(int argc, char*argv[]){
#endif
{
printf("hello assembler world, %d arguments given\n", argc);