
#ifndef _SIZE_T 
#define _SIZE_T
typedef pthread_size_t  size_t;
#endif

/* Non-standard Linux string routines. */
#if !defined(_ANSI_SOURCE) && !defined(_POSIX_SOURCE)
__BEGIN_DECLS
int	 bcmp __P((const void *, const void *, size_t));
void	 bcopy __P((const void *, void *, size_t));
void	 bzero __P((void *, size_t));
char	*index __P((const char *, int));
char	*rindex __P((const char *, int));
char	*strdup __P((const char *));
char	*strsep __P((char **, const char *));
__END_DECLS
#endif 
