1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Portability fixes

Changed TRUNCATE table_name -> TRUNCATE TABLE table_name
This commit is contained in:
monty@donna.mysql.com
2001-02-02 03:47:06 +02:00
parent a2c2c9dc40
commit 9d120741d2
20 changed files with 90 additions and 62 deletions

View File

@ -18,6 +18,10 @@
/* thread safe version of some common functions */
/* for thread safe my_inet_ntoa */
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
#if !defined(MSDOS) && !defined(__WIN__) && !defined(__BEOS__)
#ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h>
@ -31,3 +35,7 @@
#endif /* !defined(MSDOS) && !defined(__WIN__) */
void my_inet_ntoa(struct in_addr in, char *buf);
#ifdef __cplusplus
}
#endif