Frostie Sprout wrote:
>
> but I come up with another error during compilation:
> wrapper.c:65: warning: comparison between pointer and integer
I'd call that a "warning" rather than an error, but...
You can probably fix it by including "string.h" or "strings.h"
(whichever Linux has -- if it's POSIX-ish, it should have
string.h), doing something like
#ifndef STRCHR
# include <string.h>
# define STRCHR(s,c) strchr(s,c)
#endif
in the STRCHR ifndef in wrapper.c.
--
Bryan Curnutt Stoner Associates, Inc.
bryan.curnutt@stoner.com 5177 Richmond Ave., Suite 900
+1 713 626 9568 voice +1 713 622 7832 fax Houston TX 77056
References:
|
|