1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-24 17:35:35 +02:00

Test renamed from linkedLib

This commit is contained in:
Leo Treggiari 2006-04-27 00:36:48 +00:00
parent 165512e1b8
commit 52bca0701f
4 changed files with 18 additions and 0 deletions

View file

@ -0,0 +1,8 @@
#include <stdio.h>
#include "test_ar.h"
void f1_ar()
{
printf ( "Hello from f1_ar.\n" ) ;
return ;
}

View file

@ -0,0 +1,8 @@
#include <stdio.h>
#include "test_ar.h"
void f2_ar()
{
printf ( "Hello from f2_ar.\n" ) ;
return ;
}

View file

@ -0,0 +1,2 @@
void f1_ar() ;
void f2_ar() ;