Hi,
I have some programs those are written in .pc files.
That is proc files. Some functions are available in .pc but its declaration is available in .h files and those functions are getting used in .c files.
for example.
in .h file
int erro(char*) is available
in .pc file
int error(char *m) is available
in . c file
error("cap")
so how we can achieve this.
in .c file .h is included but .pc files name is not there.
how this will get called.
i am trying to run this in unix machine.
please can any one help me in achieving this.
shafi
I have some programs those are written in .pc files.
That is proc files. Some functions are available in .pc but its declaration is available in .h files and those functions are getting used in .c files.
for example.
in .h file
int erro(char*) is available
in .pc file
int error(char *m) is available
in . c file
error("cap")
so how we can achieve this.
in .c file .h is included but .pc files name is not there.
how this will get called.
i am trying to run this in unix machine.
please can any one help me in achieving this.
shafi
Comment