https://github.com/Kitware/CMake
Raw File
Tip revision: f9116d0225f0c96a20b508510cffb621e116ac28 authored by Brad King on 28 June 2010, 14:23:40 UTC
CMake 2.8.2
Tip revision: f9116d0
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