https://github.com/Kitware/CMake
Raw File
Tip revision: c462aafcfa2815b164c3fff660bd1fc78e95cb12 authored by David Cole on 09 August 2012, 17:57:02 UTC
CMake 2.8.9
Tip revision: c462aaf
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