Remove 'extern' references from .cc files

This commit is contained in:
monty@mashka.mysql.fi 2003-09-13 11:35:29 +03:00
commit f300e3a164
19 changed files with 38 additions and 34 deletions

View file

@ -30,11 +30,13 @@
ha_checksum my_checksum(ha_checksum crc, const byte *pos, uint length)
{
/* const byte *end=pos+length;
#ifdef NOT_USED
const byte *end=pos+length;
for ( ; pos != end ; pos++)
crc=((crc << 8) + *((uchar*) pos)) + (crc >> (8*sizeof(ha_checksum)-8));
return crc;
*/
#else
return (ha_checksum)crc32((uint)crc, (const uchar *)pos, length);
#endif
}

View file

@ -19,7 +19,6 @@
a shared library
*/
#include "mysys_priv.h"
#include <signal.h>
#define MAX_SIGNALS 10 /* Max signals under a dont-allow */