~jmckaskill/cmake/CMakeLuaHg

« back to all changes in this revision

Viewing changes to LuaTests/Basic/SUBDIR/simple.cxx

  • Committer: Eric Wing
  • Date: 2008-04-14 21:40:35 UTC
  • mfrom: (881.1.1)
  • Revision ID: eric_wing_ewing_._public_-at-_gmail_._com-20080414214035-ywxgat1opekv0cxg
Resync

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
extern void simpleLib();
 
2
extern "C" int FooBar();
 
3
extern int bar();
 
4
extern int bar1();
 
5
int main ()
 
6
{
 
7
  FooBar();
 
8
  bar();
 
9
  simpleLib();
 
10
  return 0;
 
11
}