summaryrefslogtreecommitdiff
path: root/mit-pthreads/machdep/ultrix-4.2/__string.h
blob: 03039b5cf737e781be4e23a418212a8d55876326 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

#if ! defined(_SIZE_T_)
#define _SIZE_T_
typedef pthread_size_t  size_t;
#endif

/* Non-standard Ultrix 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));
__END_DECLS
#endif