https://github.com/Kitware/CMake
Raw File
Tip revision: 177fc020731bcee747295573c92cd0f7ca200e53 authored by Brad King on 22 September 2020, 12:53:09 UTC
CMake 3.18.3
Tip revision: 177fc02
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