summaryrefslogtreecommitdiff
path: root/mit-pthreads/machdep/alpha-osf1/__string.h
blob: 6558102a282fac7209b8e1cb32b682474ed1a0f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  
#ifndef _SIZE_T
#define _SIZE_T
typedef pthread_size_t  size_t;
#endif

__BEGIN_DECLS

/*
void 	* memchr		__P_((const void *, int , size_t ));
void 	* memcpy		__P_((void *, const void *, size_t ));
void 	* memset		__P_((void *, int , size_t ));
size_t    strcspn		__P_((const char *, const char *));
size_t    strlen		__P_((const char *));
size_t    strspn		__P_((const char *, const char *));
*/

__END_DECLS