This is the mail archive of the cygwin@sourceware.cygnus.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: dlltool and ld combination does not work




On Wed, 5 Feb 1997, Bappa Pal wrote:

> 
> I am getting an error everytime I use ld to build the dll. The test case I
> am using is very simple. I have a C file called vp_print.c with the
> following code:
> 
> #include <stdio.h>
> #include <stdlib.h>
You are missing:
 #include <string.h>
> 
> void vp_print(char *str_txt)
> {
> 	char str[10];
> 
>       strcpy(str, str_txt);
        ^^^^^^ that is in string.h :)
> 
> }
-
For help on using this list, send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]