summaryrefslogtreecommitdiff
path: root/Tests/Assembler/main.c
blob: 6cbf24de781c592bf5de39e1dbecb0e7ae38ee0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <stdio.h>

#ifdef __CLASSIC_C__
int main(){
  int ac;
  char*av[];
#else
int main(int ac, char*av[]){
#endif
{
  printf("hello assembler world, %d arguments  given\n", argc);
  return 0;
}