~mysql/mysql-server/mysql-6.0

« back to all changes in this revision

Viewing changes to mit-pthreads/machdep/freebsd-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
#include <machine/ansi.h>
 
3
#ifdef  _BSD_SIZE_T_
 
4
typedef _BSD_SIZE_T_    size_t;
 
5
#undef  _BSD_SIZE_T_
 
6
#endif
 
7
 
 
8
/* Non-standard NetBSD string routines. */
 
9
#if !defined(_ANSI_SOURCE) && !defined(_POSIX_SOURCE)
 
10
__BEGIN_DECLS
 
11
int      bcmp __P_((const void *, const void *, size_t));
 
12
void     bcopy __P_((const void *, void *, size_t));
 
13
void     bzero __P_((void *, size_t));
 
14
char    *index __P_((const char *, int));
 
15
char    *rindex __P_((const char *, int));
 
16
char    *strdup __P_((const char *));
 
17
void     strmode __P_((int, char *));
 
18
char    *strsep __P_((char **, const char *));
 
19
__END_DECLS
 
20
#endif
 
21