25 lines
445 B
C++
25 lines
445 B
C++
![]() |
/** @file
|
||
|
|
||
|
$Id$
|
||
|
|
||
|
$Date$
|
||
|
$Author$
|
||
|
|
||
|
@copy © Marc Wäckerlin
|
||
|
@license LGPL, see file <a href="license.html">COPYING</a>
|
||
|
|
||
|
$Log$
|
||
|
Revision 1.1 2005/02/18 15:53:55 marc
|
||
|
initial release
|
||
|
|
||
|
|
||
|
1 2 3 4 5 6 7 8
|
||
|
5678901234567890123456789012345678901234567890123456789012345678901234567890
|
||
|
*/
|
||
|
|
||
|
extern "C" {
|
||
|
int test1(int i) {
|
||
|
return i*i;
|
||
|
}
|
||
|
}
|