summaryrefslogtreecommitdiff
path: root/main/php.h
diff options
context:
space:
mode:
authorAndrei Zmievski <andrei@php.net>1999-10-15 19:23:04 +0000
committerAndrei Zmievski <andrei@php.net>1999-10-15 19:23:04 +0000
commit86e031d9e85c2a0f17c2f571d41bab0cff5c4d34 (patch)
treef872fdcdf09b39338709c53f647ac3e02184c4fe /main/php.h
parentac997bb6c2621deb3110d0ed6fbebebe1a60fe5f (diff)
downloadphp-git-86e031d9e85c2a0f17c2f571d41bab0cff5c4d34.tar.gz
Added mergesort.c from FreeBSD.
Diffstat (limited to 'main/php.h')
-rw-r--r--main/php.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/main/php.h b/main/php.h
index b255ab3e3b..bcc74d9c8d 100644
--- a/main/php.h
+++ b/main/php.h
@@ -307,6 +307,8 @@ int module_startup_modules(void);
int module_global_startup_modules(void);
int module_global_shutdown_modules(void);
+int mergesort(void *base, size_t nmemb, size_t size, int (*cmp) (const void *, const void *));
+
/*from basic functions*/
extern PHPAPI int _php_error_log(int opt_err,char *message,char *opt,char *headers);