https://github.com/Kitware/CMake
Raw File
Tip revision: c36622a45f55b296d0891d94a91372c320768be0 authored by David Cole on 31 October 2012, 14:59:55 UTC
CMake 2.8.10
Tip revision: c36622a
main.c
#include <stdio.h>

extern int foo();
extern int bar();

int main()
{
   int i=foo();
   int k=bar();
   i=i*k;
   return i;
}
back to top