diff options
author | cmiller@zippy.(none) <> | 2006-05-02 13:55:03 -0400 |
---|---|---|
committer | cmiller@zippy.(none) <> | 2006-05-02 13:55:03 -0400 |
commit | 4d15fc5ee096fffc6fd36ddcb3c1dea98904c387 (patch) | |
tree | 1cc24ca2a9d99f0fe94d42a0e757cfd21f2ca766 /include | |
parent | b050f975c43fcfa8f85ad9725e6cfe9eff1b025c (diff) | |
parent | 0f63c3d39c51d2749bd13c54e68bd48cc04fa300 (diff) | |
download | mariadb-git-4d15fc5ee096fffc6fd36ddcb3c1dea98904c387.tar.gz |
Merge zippy.(none):/home/cmiller/work/mysql/mysql-5.0__bug17667
into zippy.(none):/home/cmiller/work/mysql/mysql-5.1-new__bug17667
Diffstat (limited to 'include')
-rw-r--r-- | include/my_sys.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/my_sys.h b/include/my_sys.h index 41851b91cbd..aab92f80c8e 100644 --- a/include/my_sys.h +++ b/include/my_sys.h @@ -601,6 +601,11 @@ extern char *_my_strndup(const byte *from, uint length, const char *sFile, uint uLine, myf MyFlag); +/* implemented in my_memmem.c */ +extern void *my_memmem(const void *haystack, size_t haystacklen, + const void *needle, size_t needlelen); + + #ifdef __WIN__ extern int my_access(const char *path, int amode); extern File my_sopen(const char *path, int oflag, int shflag, int pmode); |