In file included from arg.c:5:
basic.h:65: error: conflicting types for ‘bzero’
basic.h:66: error: conflicting types for ‘bcopy’
This is the snippet from basic.h (line 61-68)
#if defined (sgi)
# include <bstring.h> /* bzero(), bcopy() */
#else
# if !defined (bzero)
int bzero (const void *b, int length);
int bcopy (const void *src, void *dst, int length);
# endif
#endif
Unfortunately, the compiler isnt telling me where it was previously defined. I am not sure how to go about fixing this.
Any general or specific help with respect to this error is greatly appreciated.