~jaypipes/drizzle/item-class-file-reorg

« back to all changes in this revision

Viewing changes to mystrings/m_string.h

  • Committer: Brian Aker
  • Date: 2008-07-29 07:47:38 UTC
  • mfrom: (212.6.1 bzero-memset)
  • Revision ID: brian@tangent.org-20080729074738-lfzim6htapm42f2o
MergeĀ fromĀ Mats

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
#undef HAVE_BCMP
35
35
#endif
36
36
 
37
 
/*  This is needed for the definitions of bzero... on solaris */
38
 
#if defined(HAVE_STRINGS_H)
39
 
#include <strings.h>
40
 
#endif
41
 
 
42
37
/*  This is needed for the definitions of memcpy... on solaris */
43
38
#if defined(HAVE_MEMORY_H) && !defined(__cplusplus)
44
39
#include <memory.h>
109
104
extern  void bfill(uchar *dst,size_t len,char fill);
110
105
#endif
111
106
 
112
 
#if !defined(bzero) && !defined(HAVE_BZERO)
113
 
extern  void bzero(uchar * dst,size_t len);
114
 
#endif
115
 
 
116
107
#if !defined(bcmp) && !defined(HAVE_BCMP)
117
108
extern  size_t bcmp(const uchar *s1,const uchar *s2,size_t len);
118
109
#endif