~mysql/mysql-server/mysql-6.0

« back to all changes in this revision

Viewing changes to mit-pthreads/machdep/linux-2.0/__string.h

  • Committer: bk at mysql
  • Date: 2000-07-31 19:29:14 UTC
  • Revision ID: sp1r-bk@work.mysql.com-20000731192914-08846
Import changeset

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
#ifndef _SIZE_T 
 
3
#define _SIZE_T
 
4
typedef pthread_size_t  size_t;
 
5
#endif
 
6
 
 
7
/* Non-standard Linux string routines. */
 
8
#if !defined(_ANSI_SOURCE) && !defined(_POSIX_SOURCE)
 
9
__BEGIN_DECLS
 
10
int      bcmp __P_((const void *, const void *, size_t));
 
11
void     bcopy __P_((const void *, void *, size_t));
 
12
void     bzero __P_((void *, size_t));
 
13
char    *index __P_((const char *, int));
 
14
char    *rindex __P_((const char *, int));
 
15
char    *strdup __P_((const char *));
 
16
char    *strsep __P_((char **, const char *));
 
17
__END_DECLS
 
18
#endif