https://github.com/Kitware/CMake
Raw File
Tip revision: ffff99c58e00bcf068c59cadba0706eb5f342124 authored by Brad King on 07 October 2013, 12:28:26 UTC
CMake 2.8.12
Tip revision: ffff99c
main.c
#include <stdio.h>

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