https://github.com/Kitware/CMake
Raw File
Tip revision: a00f1beb530c0c9fff8deab150a07b4c3839285b authored by Bill Hoffman on 05 May 2008, 17:38:19 UTC
ENH: merge in changes for generated docs
Tip revision: a00f1be
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