CMake/Tests/Assembler/main.c

14 lines
198 B
C
Raw Normal View History

2007-07-05 17:05:40 +04:00
#include <stdio.h>
#ifdef __CLASSIC_C__
int main(){
int ac;
char*av[];
#else
int main(int ac, char*av[]){
#endif
2007-07-05 17:05:40 +04:00
{
printf("hello assembler world, %d arguments given\n", argc);
return 0;
}