mirror of
https://github.com/MariaDB/server.git
synced 2025-02-02 20:11:42 +01:00
19 lines
414 B
C
Executable file
19 lines
414 B
C
Executable file
|
|
#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
|
|
|