1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

Portability fix extern "C" static -> extern "C"

This commit is contained in:
monty@hundin.mysql.fi
2002-11-07 12:49:02 +02:00
parent 890b39bb68
commit aa4e165808
10 changed files with 32 additions and 32 deletions

View File

@@ -98,8 +98,8 @@ static void init_syms(udf_func *tmp)
}
}
extern "C" static byte* get_hash_key(const byte *buff,uint *length,
my_bool not_used __attribute__((unused)))
extern "C" byte* get_hash_key(const byte *buff,uint *length,
my_bool not_used __attribute__((unused)))
{
udf_func *udf=(udf_func*) buff;
*length=(uint) udf->name_length;