Dean Zobec wrote:
Hi,
i tried to link a c function but had some problems:
a simple example:
in file cwrite.c
#include
void writestringinc(void);
void writestringinc(void) {
puts("This string is written using c");
fflush( stdout );
}
compiled with c using
g++ -c cwrite.c
now, t
> Hi,
> i tried to link a c function but had some problems:
> a simple example:
> in file cwrite.c
>
> #include
>
> void writestringinc(void);
>
> void writestringinc(void) {
> puts("This string is written using c");
> fflush( stdout );
> }
>
> compiled with c using
> g++ -c cwrite
Hi,
i tried to link a c function but had some problems:
a simple example:
in file cwrite.c
#include
void writestringinc(void);
void writestringinc(void) {
puts("This string is written using c");
fflush( stdout );
}
compiled with c using
g++ -c cwrite.c
now, this is a test pr