mirror of
https://github.com/MariaDB/server.git
synced 2025-01-23 07:14:17 +01:00
20 lines
499 B
C
Executable file
20 lines
499 B
C
Executable file
|
|
#ifndef _SYS_STDSYMS_INCLUDED
|
|
#endif
|
|
|
|
#ifndef _SIZE_T
|
|
#define _SIZE_T
|
|
typedef pthread_size_t size_t;
|
|
#endif
|
|
|
|
/* Non-standard SunOS 4.x string routines. */
|
|
#if !defined(_ANSI_SOURCE) && !defined(_POSIX_SOURCE)
|
|
__BEGIN_DECLS
|
|
int bcmp __P_((const void *, const void *, size_t));
|
|
void bcopy __P_((const void *, void *, size_t));
|
|
void bzero __P_((void *, size_t));
|
|
char *index __P_((const char *, int));
|
|
char *rindex __P_((const char *, int));
|
|
char *strdup __P_((const char *));
|
|
__END_DECLS
|
|
#endif
|